In my application I have a SelecOneMenu which shows some items like below..
<h:selectOneMenu id="cmbInput" value="#{myBean.val}" required="true" requiredMessage="Some Message">
<f:selectItem itemLabel="Please select" noSelectionOption="true" />
<f:selectItems value="#{myBean.items}" />
<f:ajax event="valueChange" render="myPanel"/>
<f:ajax listener="#{myBean.myListener}"/>
</h:selectOneMenu>
Basically whenever user select an item it will render a panel below which have some input fields like below..
<h:panelGroup id="myPanel" rendered="#{myBean.someFlag}">
<h:inputText id="input1" value="#{myBean.someVal}" required="true">
</h:panelGroup>
And there is a "Next" button which takes the user to the next page.
The problem I am facing is that whenever user is seleting something from the dropdown and clicking on the next button before the panel is rendered it is taking him to the next page. But I want to prevent it as that panel contain fields which needs to be entered so I want to throw validation errors on clicking next in this case.