Hi Hristo,
I set the same as you explained above, But i found first time while i am clicking on the cell for selection i need to type decimal twice. while i am typing first time it became editable and after editable i can type there decimal (.) whereas i need like common key functionality. here we can do 2 things.
1. we can remove the restrictions from jqxgrid.edit.js file. if possible then please provide us the file. Also, we are the existing paid customer.
2. I have written code under handlekeyboardnavigation for make it editable which is working like mentioned above.
handlekeyboardnavigation: function (event) {
if (event.keyCode == 110) {
var cell = $(gridID).jqxGrid(‘getselectedcell’);
currRow = cell.rowindex;
var datafield = cell.datafield;
$(gridID).jqxGrid(‘begincelledit’, currRow, datafield);
}
}
Please let me know how i can fix it.
FYKI my grid property
selectionmode: ‘multiplecellsadvanced’,
editmode: ‘selectedcell’,