enables/disables light mouse navigation mode (row selection with mouse over, editing with single click)
mode | boolean | true/false |
//enable light mouse navigation
myGrid.enableLightMouseNavigation(true);
//disable light mouse navigation
myGrid.enableLightMouseNavigation(false);
mutually exclusive with the enableEditEvents method
Back to top