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

        Repository Revision Date User Message
        ICEsoft Public SVN Repository #22097 Wed Aug 04 14:55:09 MDT 2010 yip.ng ICE-5951: Regression Icefaces2 - ICE-2283 is failing.
        Files Changed
        Commit graph MODIFY /icefaces2/trunk/icefaces/compat/components/src/main/java/com/icesoft/faces/component/ext/renderkit/TableRenderer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #22096 Wed Aug 04 14:50:35 MDT 2010 yip.ng ICE-5951: Regression Icefaces2 - ICE-2283 is failing.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/component/src/com/icesoft/faces/component/ext/renderkit/TableRenderer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16494 Wed Apr 23 09:35:35 MDT 2008 adnan.durrani Fix for ICE-2283 (All values of the comma-delimited columnWidths property are being applied to <ice:column>, even if rendered="false")
        Files Changed
        Commit graph MODIFY /icefaces/branches/icefaces-1.7/icefaces/component/src/com/icesoft/faces/component/ext/renderkit/TableRenderer.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16493 Wed Apr 23 09:29:51 MDT 2008 adnan.durrani Fix for ICE-2283 (All values of the comma-delimited columnWidths property are being applied to <ice:column>, even if rendered="false")
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/component/src/com/icesoft/faces/component/ext/renderkit/TableRenderer.java

          People

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

            Dates

            • Created:
              Updated:
              Resolved: