Pessoal,
estou criando uma datatable básica,algo do tipo:
<f:view>
<h:form>
<h:dataTable value='#{obj.propriedade}'
var="item">
<h:column>
<h:outputText value="#{obj.algcoisa}"/>
</h:column>
</h:dataTable>
</h:form>
</f:view>
Minha propriedade retorna um List,mas estou tendo o seguinte erro:
The method setVar(String) in the type DataTableTag is not applicable for the arguments (JspValueExpression)
Alguem sabe o que é isso?
