private function onCheckBoxClick( event:MouseEvent ):void
{
event.stopPropagation();
if (data is TocItem) {
var item:TocItem = TocItem(data);
item.visible = _checkbox.selected;
if(item.visible == true && item.parent.visible == false)
item.parent.visible = true; }
}
Hello,
is there any solution for that problem in the web appbuilder layer list widget?
thanks.