我需要動態創建一個jsf數據表,這意味着 列中的任何一列都會變化,並且將在運行時決定 任何示例都將被理解。動態生成一個jsf數據表
-SPD
<ice:dataTable var="item"
value="#{section.rowDataModel}">
<ice:columns value="#{section.columnDataModel}"
var="column">
<f:facet name="header">
<ice:panelGroup>
<ice:outputText value="#{column.columnName}" style="#{column.columnWidth}"/>
</ice:panelGroup>
</f:facet>
<!-- display the table cell values-->
<ice:panelGroup
style="text-align: center; white-space: nowrap;">
<ice:inputText value="#{section.columnValue}" />
</ice:panelGroup>
</ice:columns>
</ice:dataTable>
你的任何努力也將不勝感激。這不是一個代碼生成機器。 – 2011-01-31 21:56:37