Table columns shrink when sorted
--------------------------------
Key: XAP-539
URL: https://issues.apache.org/jira/browse/XAP-539
Project: XAP
Issue Type: Bug
Components: Widgets: Table/Tree/TreeTable
Environment: IE7, IE6, Windows XP
Reporter: David Day
Priority: Blocker
Each time a column is sorted in a table, all columns in that table shrink by a
small amount.
Important: The problem only occurs when a width is not specified for the header.
Steps:
1. Use this XAL:
<xal xmlns="http://openxal.org/ui/html">
<rootPane>
<freePane width="1024px" height="768px">
<horizontalBoxPane height="500px">
<table id="messagesTable" height="500px" width="500px">
<column>
<header text="Topic"/>
</column>
<column>
<header text="Listener"/>
</column>
<column>
<header text="Content"/>
</column>
<row>
<cell text="Row 1 Cell 1"/>
<cell text="Row 1 Cell 2"/>
<cell text="Row 1 Cell 1"/>
</row>
<row>
<cell text="Row 2 Cell 1"/>
<cell text="Row 2 Cell 2"/>
<cell text="Row 1 Cell 1"/>
</row>
<row>
<cell text="Row 3 Cell 1"/>
<cell text="Row 3 Cell 2"/>
<cell text="Row 1 Cell 1"/>
</row>
</table>
</horizontalBoxPane>
</freePane>
</rootPane>
</xal>
2. Run the xal and notice columns shrink each time a column is sorted.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.