For the tree control, can the expand icon be disabled? (I still need to be able select the row via the checkbox. I just don't want to expand the row.)
The icon is rendered like the following:
<span class="rz-tree-toggler rzi rzi-caret-right"></span>
I would like to be able to dynamically inject disabled so the icon does not expand the child element.
<span class="rz-tree-toggler rzi rzi-caret-right" disabled=""></span>
In CSS, I can add the following to prevent clicks
span[disabled] {
pointer-events: none;
}