I have taken your example and modified it a bit to illustrate the bug.
You will see it hit the nodeSelected method the first time you right click on the node. After hitting continue in the debugger, if you right click on the node again, the nodeSelected method is no longer hit. I assume because the node is already \"selected\". Again, this is different behaviour than 4.2. If this is correct behaviour, how do I properly discard this \"selected\" event when the user is trying to right click on a menu item?
Thanks,
Rich
Panel
Codebehind:
protected void myMenu_Command(object sender, NineRays.WebControls.FlyContextMenuCommandEventArgs e)
{
panel.Visible = !panel.Visible;
}
protected void nodeSelected(object sender, NineRays.WebControls.FlyTreeNodeEventArgs e)
{
panel.BackColor = System.Drawing.Color.Green;
}