Check documentation for the latest version of dhtmlxSuite onLastRow DHTMLX Docs

onLastRow

fires on pressing the Down-Arrow button while the last row of the page is selected

void onLastRow();

Example

myGrid.attachEvent("onLastRow",function(){
    // your code here
});

Details

The event is blockable. Returning false in case of dynamic loading and paging will block switching to the next page.

Back to top