Skip to content

Instantly share code, notes, and snippets.

@CedricL46
Last active April 12, 2018 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CedricL46/5641b166bf48ff55a3f4dea3f616d0e3 to your computer and use it in GitHub Desktop.
Save CedricL46/5641b166bf48ff55a3f4dea3f616d0e3 to your computer and use it in GitHub Desktop.
How to display a please wait message when the server is processing using addBusyStateListener in ADF ? https://cedricleruth.com/how-to-display-a-please-wait-message-when-the-server-is-processing-using-addbusystatelistener-in-adf/
<af:group id="pt_g3">
<div id="loaderId"></div>
<af:popup id="processingP" contentDelivery="immediate" clientComponent="true">
<af:dialog id="d2" title="Processing..." type="none" closeIconVisible="false" inlineStyle="text-align:center;" clientComponent="true"
modal="true">
<f:facet name="buttonBar"/>
<af:panelGroupLayout id="pgl2" layout="vertical" halign="center">
<af:spacer width="10" height="10" id="s11"/>
<af:outputText value="Please wait..." id="ot2669"/>
</af:panelGroupLayout>
</af:dialog>
</af:popup>
</af:group>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment