Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
1.1.3
-
None
-
Microsoft Windows XP Professional Version 2002 Service Pack 2, Microsoft Internet Explorer Version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519, IBM Rational Software Development Platform Version: 6.0.1 Build id: 20050725_1800, WebSphere Application Server v6.0
Description
I am using <t:dataTable> and I am using the attribute columnClasses. According to (http://myfaces.apache.org/tomahawk/tlddoc/t/dataTable.html) columnClasses - A comma separated list of CSS class names to apply to td elements in each column.
But this does not happen, when I define the columnClasses styles to be applied in each column only the very first class is rendered for all columns.
This is how I did it:
<t:dataTable id="myDetailDataTable" var="row" value="#
" cellspacing="0" columnClasses="columnClassLock,columnClassUnlock" headerClass="headerClassTopLock" rowClasses="rowOdd,rowEven" styleClass="dataTable">
<t:columns value="#
" var="currentColumn">
<f:facet name="header">
<h:outputText value="#
"/>
</f:facet>
<h:outputText value="#
<h:inputText value="#{myDetailList.columnValue[currentColumn.name]}
" style="#
{myDetailList.columnValue[currentColumn.label]}" rendered="#
{myDetailList.columnValue [currentColumn.render]}" size="6" maxlength="15">
<f:converter converterId="javax.faces.BigDecimal"/>
</h:inputText>
</t:columns>
</t:dataTable>