Hi,
I’d like to enable text selection inside the grid, I mean basic text selection.
So I just want to permit a user to click + drag the mouse on the grid and let the browser highlight / select the cells text.
I was able to do that writing this line of code
this._grid.entBox.onselectstart = function() { return true; };
and I’m quite happy of the result, but I was wondering whether this will cause some side effect.
May you advice me?
Best regards, Andrea Pirola