Posted
on Apr 8, 2008
(permalink)
Suppose I have another control with an event handler such as a RadComboBox. Inside that event, based on what was selected in the combo box, I go to a treeview on the same page and find the corresponding node. Once I find the node, I want to be able to show the context menu just as the user had right clicked on it. I know there is
node.show(event), and node.showAt(x, y). When I use node.showAt(x,y), I don't think the proper event handlers are being hooked up because I get javascript errors once a menu item is chosen. I do not understand exactly what I should pass into node.show(event). I believe this is what I need to do, but has anyone ever seen an example of this?