Hi Peter,
Problem Statement:
In my web page wherever jqxGrid is present. I cannot select/copy the text outside the grid.
/*Disable browser selection*/
.jqx-disableselect
{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
-ms-user-select:none;
-webkit-touch-callout:none;
}
This CSS is creating the problem. This css class is getting added to the body of the website.
I have commented this css and checked. Now I am able select/copy the text. But I got two problems now.
1) I cannot resize the columns.
2) Whenever I am doing reorder of columns unnecessarily the text in the grid gets highlighted.