What is the best approach to disable the right click context menu for a form but still allow custom menus on specific controls?
[hr][/hr]
Ok sorted it
Add an onload event with custom script
document.oncontextmenu=new Function("return false");
Then on the control you want right click to work add an "onrightclick" event.
[hr][/hr]
Ok sorted it
Add an onload event with custom script
document.oncontextmenu=new Function("return false");
Then on the control you want right click to work add an "onrightclick" event.