Empty table using Trinidad tr:table tag
Hi,
I m trying to populate a table from my sample table (Dept which has two columns Dept_Code and Dept_Name). But my DeptList.jsp does not show any row !!!!
Here is DeptList.jsp code
=====================
<f:view>
<h:form>
<tr:table
value="#{EmpBean.myDeptDataList}"
var="myDeptItem">
<tr:column>
<f:facet name="header">
<tr:outputText value="ID" />
</f:facet>
<tr:outputText value="#{myDeptItem.dept_Code}" />
</tr:column>
<tr:column>
<f:facet name="header">
<tr:outputText value="Name" />
</f:facet>
<tr:outputText value="#{myDeptItem.dept_Name}" />
</tr:column>
</tr:table>
</h:form>
</f:view>
If I execute this code using <h:dataTable , ><h:column and ><h:outputText it works fine which means my EmpBean.myDeptDataList contains all of desired rows .
But I want to use Trinidad ><tr:table tag in order to use multiple pages functionality. Any help?>

