Problem with dataTableTag and setVar(String)
hi
do someone know why I get this exception?
java.lang.Error: Unresolved compilation problem:
The method setVar(String) in the type DataTableTag is not applicablefor the arguments (JspValueExpression)
I get it only using EL like here:
<h:dataTable value="#{testHandler.cities}" var="city" >
<h:column>
<h:outputText value="#{city}" />
</h:column>
</h:dataTable>
..where cities is an ArrayList with String objects.
I use Tomcat 6.0.13,
JSF1.2 (jsf-api.jar, jsf-impl.jar),
JSTL1.2 (jstl-1.2.jar),
commons-beanutils-1.7.0,
commons-collections-3.2.jar,
commons-digester-1.8.jar,
commons-logging-1.1.jar
thx
adam

