I'm using rich:popupPanel component of richfaces 4.0 & jsf 2.0 which contains some form fields like name.address & contact also one a4j:commandButton "Save". The text fields are bind to managed bean properties like
<h:inputText size="25" maxlength="20" value="#{us.patient.lname}"/>
When I click on save button then add method of button is executed which prints value of textfield (i.e properties of beans). As textfield value is not empty, the value of textfield is not bind to property of beans. It gives null result why this happen only for popup?
In <rich:popupPanel>
we have to include <h:form>
attribute.so when we click on button this form is submit and value are passes to beans.