styleClass of the first rich:column is applied to every rendered row
--------------------------------------------------------------------

                 Key: RF-10571
                 URL: https://issues.jboss.org/browse/RF-10571
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: component-tables
    Affects Versions: 4.0.0.Milestone6
         Environment: Tomcat 7.0.6, MyFaces 2.0.4, RichFaces 4.0.0-SNAPSHOT
            Reporter: Marc-Christian Schroeer


When using a rich:dataTable-component, the styleClass of the first 
<rich:column></rich:column> is applied to the each <tr>-tag rendered.

Example:

<rich:dataTable ...>
  <rich:column styleClass="nww">
  ...
  </rich:column>
</rich:dataTable>

results in

<table>
  <tr class="rf-dt-r nww">
    <td>...</td>
  </tr>
  <tr class="rf-dt-r nww">
    <td>...</td>
  </tr>

  ...
</table>


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to