Copying text from grid
The grid is working fine but I have an issue with the selection. The test in a cell couldnt be selected. when I click on the cell, actually the cell is getting selected not the text. Any solution????
Thanks
Ajay
September 6,
The grid is working fine but I have an issue with the selection. The text in a cell couldnt be selected. when I click on the cell, actually the cell is getting selected not the text. Any solution????
Thanks
Ajay
September 6,
I think the cell text would be selected when you switch over to editing mode. You have to set the grid as editable and then double-click or press F2 on a cell to switch to editing mode.
Check out the Editing example under Grid Behaviour.
Sumit
September 6,
It is possible to allow text selection by removing onselectstart event handler (IE) -
grid.setEvent("onselectstart", "");
Alex (ActiveWidgets)
September 7,