When I call treeView.commitChanges() does anything happen server side? For that matter is anything transmitted at this point back to the server?
For example:
For example:
var treeView = $find("RadTreeView1");
treeView.trackChanges();
//add, remove, disable nodes
treeView.commitChanges();
I want the user to be able to add an remove items from a treeview client side. I want these changes to a take affect server side ASAP (ie I don't want to wait for the user to click a button that causes a post back). How do I go about this?