I need for JSF validation messages displaying in Dialog box when Button is clicked but dialog box should be shown not get hidden.
<h:form prependId="false">
<h:panelGrid columns="1" cellpadding="5">
<p:commandButton value="Modal" onclick="dlg2.show();" type="button" />
</h:panelGrid>
<p:dialog header="Modal Dialog" widgetVar="dlg2" modal="true" height="200" width="400">
<h:panelGrid columns="1" >
<p:messages />
<p:inputText id="txt" value="#{converterBean.doubleValue}" required="true"/>
<p:commandButton ajax="false" value="Submit" action="#{converterBean.submit}" />
</h:panelGrid>
</p:dialog>
</h:form>
