I am trying reproduce the following example, but in the dynamicFieldList.xhtml
the #{cc.table}
is not detected and I have the following error:
/WEB-INF/tags/dynamicFieldList.xhtml @17,93 binding="#{cc.table}": Target Unreachable, identifier 'cc' resolved to null
Below is the line of code
<ui:composition
...
xmlns:cc="http://java.sun.com/jsf/composite">
...
<cc:implementation>
<h:dataTable id="table" binding="#{cc.table}" value="#{cc.attrs.value}" var="field">
<h:column><h:outputLabel value="#{field.label}" /></h:column>
// ...
</cc:implementation>
...
probably linked to the same issue but label and value Strings in the outputLabel from the "Field" Class are not detected as well. What could be the reason for that?