ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: SureshB on February 22, 2016, 03:07:58 pm
-
Hi sir,
How to move the cursor to the below cell when we press enter same as in Excel, While inline editing instead of moving the cursor to next beside cell?
Thank you.
-
There is no direct option for it, however it can be done (as a workaround) by taking help of editorKeyDown event.
keyUpDown option should also be true.
editorKeyDown: function(evt, ui){
if(evt.keyCode == 13){ //enter key.
evt.originalEvent.keyCode = 40;//disguise down key.
}
},
-
Good idea.
Thank you very much for your great support all the time.