Check documentation for the latest version of dhtmlxSuite forceLabelSelection DHTMLX Docs

forceLabelSelection

affects block selection, so it will copy/paste only the visible text, not the values behind

void forceLabelSelection(boolean mode);
modebooleanaffects block selection

Example

//enable label selection
myGrid.forceLabelSelection(true);
//disable label selection
myGrid.forceLabelSelection(false);

Back to top