現在、zk で動的ツリーを使用しています。コードは次のとおりです。
<tree id="treeview" multiple="true" width="330px" model="@load(vm.treeModel)"
style="border: 1px solid #9D9D9D;" vflex="1" rows="14" >
<treecols sizable="true">
<treecol />
</treecols>
<template name="model">
<treeitem>
<treerow>
<treecell><checkbox label="@load(each.data.name)" checked="true"/></treecell>
</treerow>
</treeitem>
</template>
</tree>
親のチェックボックスをオフにすると、すべての子をオフにする必要があります。また、その逆も発生するはずです。つまり、親のチェックボックスをオンにすると、すべての子をオンにする必要があります。
これを行うためにzkのツリータグに使用できる属性はありますか? そうでない場合、それを行う他の方法は何ですか?