p:dataTable
我怎么能用primefaces 展示做那种桌子。我希望列名和行名始终保持稳定,只能更改表中的数据。
我的桌子图片:
例如这里是简单的数据表代码。如果您想要灰色标题,您可以在 CSS 或样式参数中调整样式。
<p:dataTable id="dataTable" var="car" value="#{tableBean.carsSmall}">
<p:column style="background-color: grey">
<h:outputLabel>row name</h:outputLabel>
</p:column>
<p:column headerText="column name">
</p:column>
<p:column headerText="column name">
</p:column>
<p:column headerText="column name">
</p:column>
</p:dataTable>