Widgets: TreeTable: Expanded rows inside collapsed rows display when the treeTable is loaded. ---------------------------------------------------------------------------------------------
Key: XAP-362
URL: https://issues.apache.org/jira/browse/XAP-362
Project: XAP
Issue Type: Bug
Components: Widgets: Table/Tree/TreeTable
Reporter: Trevor Oldak
In the xal below, the 'depth 3' row will display when the treetable is loaded.
The same thing happens if the rows are expanded and collapsed by setting the
attributes with an MCO or macro
<treeTable id="testComponent">
<column>
<header text="Column
1"/>
</column>
<column>
<header text="Column
2"/>
</column>
<column id="column3"
onCreate="mco:attributeSetter.registerElement(this)">
<header text="Column
3"/>
</column>
<row id="row1"
onCreate="mco:attributeSetter.registerElement(this)" expanded="false">
<cell text="a"/>
<cell text="b"/>
<cell text="c"/>
<row id="myBranch"
onCreate="mco:attributeSetter.registerElement(this)" expanded="true">
<cell
text="depth 2 a"/>
<cell
text="depth 2 b"/>
<cell
text="depth 2 c"/>
<row>
<cell
text="depth 3 a"/>
<cell
text="depth 3 b"/>
<cell
text="depth 3 c"/>
</row>
</row>
</row>
</treeTable>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
