I'm using a component of primefaces, but when I select multiple items from this component I can not select.
I'm using an Enum, 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>