Hi Peter,
What’s the proper way to turn off dragging in grid? I try this
$("#jqxgrid").on('cellbeginedit', function (event) {
var gridCells = $("#jqxgrid").find('.jqx-grid-cell');
gridCells.jqxDragDrop({disabled:true});
});
$("#jqxgrid").on('cellendedit', function (event) {
var gridCells = $("#jqxgrid").find('.jqx-grid-cell');
gridCells.jqxDragDrop({disabled:false});
});
http://jsfiddle.net/fessdmks/nAW3H/26/
This make editing some better – you can change selection by mouse and then set the cursor, but you can’t set cursor in selected part of text.