Hi, sorry my english isn't very good, hope you understand.
I have a treeview with a contextMenu. In the contextMenu I have an item that needs some javascript to run and a confirmation to know if postback must be triggered.
Something like this :
- user right-click on a node (contextMenu appears)
- user select menu item
- javascript stop postback (I used "args.set_cancel(true);" in the javascript)
- javascript runs some functions then a "modal window" is displayed (this is not a window.confirm !!!) with a message like "Are you sure ?" and the usual buttons "yes/no"
My problem, how do I re-enable (or resume, or resend) the "postback" like if the menu item was clicked ?
I've already done something like this on a RadButton, and simply by using "sender.click()" in the javascript, the postback is "resumed". But there are no functions like this on a contextMenu I think...