im trying to check/uncheck specific node and its child nodes as below it is working. Except loading mask. i don't know what is the problem. why not show the mask ?
I've tried to use tree.suspendLayouts(); before cacadeBy function but result is sameCode:onTreepanelCheckChange: function(node, checked, eOpts) { tree.setLoading( 'Wait...' ); node.cascadeBy( function( n ) { n.set( 'checked', checked ); if( n.data.p_id !== 0 ) n.expand(); } ); tree.setLoading( false ); }