Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
Text Select With RowSelection
posted

Hello,

Is there a way to have Row Selection turned on and still be able to Highlight/Cut/Copy/Paste text within the grid?

I have a grid set up with the following features.

features: [
{name:"RowSelectors",rowSelectorColumnWidth:31,enableCheckBoxes:true,enableRowNumbering:false,requireSelection:false},
{name:"Selection",mode:"row",multipleSelection:true,
rowSelectionChanging: function(evt, ui) {
evt.preventDefault(); //This only fires when clicking something other than checkbox.
}
}

This setup is so that only the checkboxes are used to select rows.  However, here and even in the sample, you cannot cut/copy/paste any text when selection is turned on for the grid.  

Any help would be appreciated.