2
I am using a component of the primefaces, only when I select several items of this component I cannot select.
I am using an Enum, it needs to be an arrayList?
<h:outputLabel for="servico" value="Serviço:" />
<p:selectCheckboxMenu id="servico" value="#{servicoBean.servico.tipoServico}" label="-- Selecione --" multiple="true"
filter="true" filterMatchMode="startsWith" panelStyle="width:250px" required="true">
<f:selectItems value="#{servicoBean.tipoServicos}" var="tpServ" itemLabel="#{tpServ.descricao}" itemValue="tpServ" />
</p:selectCheckboxMenu>
Made like your own
#{servicoBean.tipoServicos}
is being filled in.– Roknauta