Dialog - Ajax Form
Dialogs can contain forms to provide ajax interaction.
Dialogs can contain forms to provide ajax interaction.
<p:commandButton id="showDialogButton" type="button" value="Show" onclick="dlg.show()" />
<p:dialog header="Enter FirstName" widgetVar="dlg" resizable="false">
<h:form id="form">
<h:panelGrid columns="2" style="margin-bottom:10px">
<h:outputLabel for="firstname" value="Firstname:" />
<p:inputText id="firstname" value="#{pprBean.firstname}" />
</h:panelGrid>
<p:commandButton id="submitButton" value="Submit" update=":display" oncomplete="dlg.hide();"/>
</h:form>
</p:dialog>
<p:outputPanel id="display" style="display:block;margin-top:10px;">
<h:outputText id="name" value="Hello #{pprBean.firstname}" rendered="#{not empty pprBean.firstname}"/>
</p:outputPanel>
Running PrimeFaces-4.0-SNAPSHOT on Mojarra-2.1.22
