UPDATE: I edited handleeditkeydown in jqxgrid.edit.js (we paid licence with scripts)
this part
for (var m = 0; m < self.columns.records.length; m++) {
var column = self.getcolumnat(m);
if (column.editable) {
datafield = column.datafield;
break;
}
}
caused that edit started always on first column and I changed to
datafield = arguments[1]._clickedcolumn
and works it fine, but on decimal numbers when I start edit, it will write first number and second automatically write it after decimal separator.
for ex I have f2 column and instead of 15,00 I will write (after pressing 1 and 5) 1,50
This behavior is same without any changes in handlekeydown in singlecell selection mode