1

ページでライトボックスを使用しています。ライトボックスを閉じている間、すべてのブラウザで正常に閉じています..しかし、Operaでは正しく閉じていません..

私のライトボックスコンポーネントコード -

<apex:component >
    <apex:attribute name="ShowFlag" type="Boolean" description="Boolean with a get/set property) passed from the page to the lightbox controller" ></apex:attribute>
    <apex:attribute name="Close" type="ApexPages.Action" description="The action from the main controller to put the lightbox flag back to false"></apex:attribute>

    <apex:form >
      <apex:outputPanel layout="block" styleClass="black-overlay" rendered="{!showflag}" id="lightboxbackground"/>
      <apex:outputPanel layout="block" styleClass="lightbox-container" rendered="{!showflag}" id="lightbox">
        <div style="text-align: right;">

            <span class="action-button-x" style="margin: 2px;">

                <apex:outputlink>X</apex:outputlink>
            </span>
        </div>

        <div class="lightbox-content">          
            <apex:componentbody />   
        </div>
      </apex:outputPanel>
    </apex:form>

</apex:component>

他のブラウザで閉じるボタンをクリックすると、閉じます.コンソールでエラーを確認しましたが、エラーはありません..

私を導いてください!!

4

0 に答える 0