Check documentation for the latest version of dhtmlxSuite enableLightMouseNavigation DHTMLX Docs

enableLightMouseNavigation

enables/disables light mouse navigation mode (row selection with mouse over, editing with single click)

void enableLightMouseNavigation(boolean mode);
modebooleantrue/false

Example

//enable light mouse navigation
myTreeGrid.enableLightMouseNavigation(true);
//disable light mouse navigation 
myTreeGrid.enableLightMouseNavigation(false);

Details

mutually exclusive with the enableEditEvents method

Back to top