我javax.el.PropertyNotFoundException value="#{col.getValue(row)}": Property 'getValue' not found
在工具提示行上得到一个。outputPanel 和 outputText 中的另一个#{col.getValue(row)}
评估得很好,这让我相信 primefaces 中可能存在错误。难道我做错了什么?有解决方法吗?
<p:dataTable id="myTable" var="row" value="#{myBean.getRows(5)}">
<p:columns var="col" headerText="#{col.name}" value="#{myBean.columns}">
<p:outputPanel id="tableColumn">
#{col.getValue(row)}
</p:outputPanel>
<h:outputText value="#{col.getValue(row)}" />
<p:tooltip for="tableColumn" value="#{col.getValue(row)}" />
</p:columns>
</p:dataTable>
使用 Tomcat 7.0.39 和 Primefaces 3.5