I have a server side event like this.
protected void RadTreeView1_ContextMenuItemClick(object sender, RadTreeViewContextMenuEventArgs e)
{
}
I am trying to call it with client side javascript. I tried __doPostBack ("contextMenuItemID", "some string")
it sends the page back to the server, but this does not raise the initial ContextMenuItemClick event. How can I fire the contextMenuItemClick source event with the corresponding Args event?
source
share