|
|
|
I forgot to mention that this is caused by Changeset 4924 (implemenetation of 'visibility' attribute on view) .
Something weird, if I do not explicitly include the tree component lib
<include href="lz/tree.lzx"/> then the tree component is broken in non-debug mode, but works in debug mode. Is some autoinclude broken?? Committed revision 5169.
stale reference to __LZvisibleSet property, which was renamed in lzView (4.0 branch (4.0.3) local build r5678)
Closed in 4.0.3 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<canvas title="Tree Example">
<dataset name="mydata">
<basket name="basket" isopen="true">
<product name="fruits" isopen="true">
<apples name="apples" isopen="true">
<type name="red delicious apple" isleaf="true"/>
<type name="fuji apple" isleaf="true" />
<type name="braeburn apple" isleaf="true" />
<type name="honey crisp" isleaf="true" isopen="true" />
</apples>
<oranges name="oranges">
<type name="valencia orange" isleaf="true" />
<type name="blood orange" isleaf="true" />
<type name="navel orange" isleaf="true" />
</oranges>
</product>
<product name="dairy">
<dairy name="eggs">
<type name="organic eggs" isleaf="true" />
<type name="free-range eggs" isleaf="true" />
</dairy>
<dairy name="milk">
<type name="skim milk" isleaf="true" />
<type name="1% milk" isleaf="true" />
<type name="whole milk" isleaf="true" />
</dairy>
<dairy name="yogurt" />
</product>
</basket>
</dataset>
<tree datapath="mydata:/basket" open="$path{'@isopen'}"
text="$path{'@name'}" multiselect="true">
<tree id="xxx" datapath="*" text="$path{'@name'}" isleaf="$path{'@isleaf'}" />
</tree>
</canvas>