Our application is based on BTF and dynamic region . We are using 11gR2 ( 11.1.2.1.0) .
On clicking on a command button opens a popup . The time is taking to open the pop up is around 700 ms . Even a blank pop up like below is taking more than 500ms . ideally , this should take less than 100 ms .
Below is the sample code taking more than 500ms while opening from our application but when tested through a simple fusion application it took less than 40ms !! .
Can you please suggest how to improve the performence and bring it down close to 40ms. ?
<af:commandButton text="Click to open Pop up" immediate="true"
id="cb7" partialSubmit="true">
<af:showPopupBehavior triggerType="action" popupId="p1"/>
</af:commandButton>
<af:popup id="p1" contentDelivery="lazyUncached">
<af:dialog id="dlgCustodian" title="Hello World!" contentHeight="300"
contentWidth="600" type="ok" closeIconVisible="false" >
</af:dialog>
</af:popup>