Reputation: 1894
In a jqxTreeGrid
, I can set the enableBrowserSelection
property to true
to allow selection of (parts of) the text displayed in the cells. This is useful for copying the data to the clipboard.
However, I noticed that this does not work when I set selectionMode
to singleRow
.
See this fiddle as an example: As soon as I add selectionMode: "singleRow",
to the JavaScript (e.g. line 143), browser selection is no longer working.
Is this a bug or is there a reason behind it which I do not understand?
Upvotes: 1
Views: 77