Code picks up value from selectOneMenu and selectBooleanCheckbox, even though it is not rendered
- by hpe
I've got code the following code in my .xhtml
<t:panelGroup rendered="false">
<t:selectOneMenu id="id" value="#{row.someValue}" displayValueOnly="#{form.readState}">
<f:selectItems value="#{row.listOfValues}"/>
</t:selectOneMenu>
</t:panelGroup>
The listOfValues is set in a form populator, and is thus…