I have a RadTreeView control with a RadTreeViewContextMenu control inside. The server side callback for this menu should delete a node when the delete menu item is clicked. I have tried both
selected.ParentNode.Nodes.Remove(selected);
and
selected.Remove();
inside of the OnContextMenuItemClick handler, but neither method removes the node on the client side. Is there a correct way to remove nodes through a callback?
Thanks