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>
            
<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
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
trunk : revision 16493
branch 1.7 : revision 16494