hi All,
I am trying to get the selected value from the drop down and access it in backing bean...using this.selectedUser.getValue() once the button is clicked...
BUT I am getting the NULL value , and also valueChangeListener is not getting fired...Please help
<af:selectOneChoice label="Select User" unselectedLabel="User is Required" contentStyle="width: 240px"
autoSubmit="true" valueChangeListener="#{HomeManagedBean.setSelUser}" binding="#{HomeManagedBean.selectedUser}"
value="#{HomeManagedBean.homebean.ruser}" id="soc1">
<f:selectItems value="#{HomeManagedBean.userselect}" id="si1" />
</af:selectOneChoice>
Thanks,