Categories | Question details Back To List | ||
DHTMLX Grid : How to disable the whole contect menu ? Hi, I want to disable the whole context menu in Grid ? How to do it ? Answer posted by Support on Jul 17, 2008 04:19 Are you mean context menu integration or native menu of browser? In first case just use grid.enableContextMenu(null); In second case mygrid.attachEvent("onRightClick",function(){ return false; }) |