After having an instance of a Converter
within a Managed Bean according to same issue as described in stackoverflow questions listed below, I am getting an exception that the object was not found.
Expression Error: Named Object: ch.foo.EnitityConverter@f163464 not found
Stackoverflow questions:
My xhtml code:
<h:selectManyCheckbox value="#{bean.selectedEmployees}">
<f:converter converterId="#{bean.entityConverter}" />
<f:selectItems value="#{bean.allEmployees}" var="e" itemLabel="#{e.name}" />
</h:selectManyCheckbox>