In my application I need to place IFrame under the tree view and I need to know what is the size when it expands/collapsed
$("#groupPagesTreeView").resize(function() {
pubsub.emit("panelResized", $("#groupPagesTreeView"));
});
how ever i am not getting the event and when
$scope.treeview = $("#groupPagesTreeView").data("kendoTreeView");
$scope.treeview.bind('expand', onExpand);
$scope.treeview.bind('collapse', onExpand);
the events are called before the end of the resizing
is there a solution?
$("#groupPagesTreeView").resize(function() {
pubsub.emit("panelResized", $("#groupPagesTreeView"));
});
how ever i am not getting the event and when
$scope.treeview = $("#groupPagesTreeView").data("kendoTreeView");
$scope.treeview.bind('expand', onExpand);
$scope.treeview.bind('collapse', onExpand);
the events are called before the end of the resizing
is there a solution?