Skip to content

Instantly share code, notes, and snippets.

@luizrobertofreitas
Created December 3, 2013 11:10
Show Gist options
  • Save luizrobertofreitas/7767493 to your computer and use it in GitHub Desktop.
Save luizrobertofreitas/7767493 to your computer and use it in GitHub Desktop.
Primefaces customized loading dialog
<p:ajaxStatus onstart="statusDialog.show();" onsuccess="statusDialog.hide();"/>
<p:dialog modal="true" widgetVar="statusDialog" showHeader="false" style="background: white;"
draggable="false" closable="false" resizable="false">
<div align="center">
<h:outputText value="#{mensagens['resultadoBuscaProdutoSES.carregando']}" /><br/><br/>
<p:graphicImage value="/resources/images/ajax-loader.gif" />
</div>
</p:dialog>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment