我在使用JSF2.0的JSF页面中使用dataTable
以表格格式显示数据。下面是我的代码。
<h:dataTable id="patentBudgetList" var="patentBudgetList" value="#{PersonalInformationDataBean.budgetInfoList}" border="1" width="40%">
<h:column>
<f:facet name="header">
<h:outputText value="Description" />
</f:facet>
<h:outputText value="#{patentBudgetList.budgetTitle}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Cost" />
</f:facet>
<h:outputText value="#{patentBudgetList.budgetCost}"/>
</h:column>
</h:dataTable>
我想要的是将Description
列的宽度设置为80%
,并将Cost
列的宽度设为20%
。
知道怎么做吗?
以下是我的操作。。。
<h:dataTable id="patentBudgetList" var="patentBudgetList"
value="#{PersonalInformationDataBean.budgetInfoList}"
border="1" width="40%"
columnClasses="setWidthOfFirstColumn,setWidthOfSecondColumn"
>
<h:column>
<f:facet name="header">
<h:outputText value="Description" />
</f:facet>
<h:outputText value="#{patentBudgetList.budgetTitle}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Cost" />
</f:facet>
<h:outputText value="#{patentBudgetList.budgetCost}"/>
</h:column>
</h:dataTable>
在css中我有
.setWidthOfFirstColumn {
width: 80%;
}
.setWidthOfSecondColumn {
width: 20%;
}