Check documentation for the latest version of dhtmlxSuite onEmptyClick DHTMLX Docs

onEmptyClick

fires on clicking the dhtmlxgrid area which is not filled with data

void onEmptyClick(object ev);
evobjectMouseEvent

Example

grid.attachEvent("onEmptyClick", function(ev){
    // your code here
});

Back to top