The code below, run on a tree panel with some check boxes, never changes the visual state or fires any handlers. All the recipes I've found deal with much older versions of ExtJS.
Help?
Code:changecheckall: function(panel, value) { panel.getRootNode().cascadeBy(function(node) { if (node.data.checked !== undefined && node.data.checked !== null) { node.data.checked = value; } }); }