TreePanel = function (config) {
this.treeDiv = config.treeDiv;
this.actionURL = config.actionURL;
$.getJSON(this.actionURL, null, initTree);
$(this.treeDiv).on("igtreeselectionchanged", function (sender, eventargs) {
var node = eventargs.selectedNodes[0];
debugger;
LoadSearch(node);
});
}
Hi there,
Could you please provide us with a little more information about this issue. A small sample reproducing it would be very useful. Thanks a lot in advance!