DHTMLX Grid : How to disable the whole contect menu ?

Hi,

I want to disable the whole context menu in Grid ? How to do it ?

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;
    })