I am writing a custom jsf Renderer
for checkboxes and radio buttons to render without TABLE
element. My question is if I have a select box like below
<h:selectManyCheckbox id="vehicle" value="#{pageBean.vehicle}>
<f:selectItems value="#{pageBean.vehiclesList} />
</h:selectManyCheckbox>
in the encodeBegin
method how can I read the vehiclesList
?