ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: omerix on October 26, 2023, 05:11:12 pm
-
Hello,
Can I make it go to the next line when the user presses enter after typing data into a cell?
or by pressing the tab key.
-
Please use this:
editModel: {
onSave: 'downFocus'
},
Example: https://paramquery.com/pro/demos/import-xlsx
-
Worked. thanks a lot
-
Can it be in "edit mode" automatically?
Pressing enter moves you to the next line, but you have to tap once to write on that line. clickEdits: is set to 1.
I'm trying it on tablet.
-
When I do 'onSave:nextEdit' the keyboard automatically opens on the next line.
Exactly what I wanted but to the right
I think you need something like downEdit on mobile or clicksToEdit:0 (to switch to automatic edit mode)
-
Please use the selectEnd event to put the cell into edit mode.
selectEnd: function(evt, ui){
var sel = ui.selection.getSelection();
this.editCell(sel[0]);
},
-
Thanks param.