Default browser context menu

Hello,

I have a Tree Grid, initialized by the code below. Everything works great, except that when I right click anywhere in the grid, headers or rows or cells, no context menu is shown. To be clear, I would like the default browser context menu to show. I am not using any dhtmlx context menus. Please advise.

Thanks,
Will

$.get(gridUrl, function(data) {
var myGrid = new dhtmlXGridObject(‘grid’);
myGrid.enableTreeGridLines();
myGrid.setImagePath("…/imgs");
myGrid.setDateFormat(’%Y-%m-%d’);
myGrid.setIconset(“fontawesome”);
myGrid.enableColSpan(true);
$(’#loadProgress’).hide();
myGrid.init();
myGrid.parse(data, “js”);
gridLoaded = true;
}

Unfortunately it is not available to use the default browser context menu in the dhtmlxGrid.