ICEfaces
  1. ICEfaces
  2. ICE-2283

All values of the comma-delimited columnWidths property are being applied to <ice:column>, even if rendered="false"

    Details

    • Type: Bug Bug
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 1.7DR#2
    • Fix Version/s: 1.7.1
    • Component/s: None
    • Labels:
      None
    • Environment:
      Windows

      Description

      If I have something like this on my page:

      <ice:dataTable columnWidths="100px,200px,300px">
          <ice:column rendered="true"/>
          <ice:column rendered="false"/>
          <ice:column rendered="true"/>
      </ice:dataTable>

      Then I should get this rendered in my DOM:

      <table>
          <tr>
              <td width="100px"/>
              <td width="300px"/>
          </tr>
      </table>

      But instead, I get this:

      <table>
          <tr>
              <td width="100px"/>
              <td width="200px"/>
          </tr>
      </table>

        Activity

        Hide
        Adnan Durrani added a comment -

        trunk : revision 16493
        branch 1.7 : revision 16494

        Show
        Adnan Durrani added a comment - trunk : revision 16493 branch 1.7 : revision 16494

          People

          • Assignee:
            Unassigned
            Reporter:
            Neil Griffin
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: