Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Ramakrishna on Jul 16, 2008 22:16
open dhtmlx forum
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;
    })