ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: omerix on October 26, 2023, 05:11:12 pm

Title: enter to save and move to the next row
Post 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.


Title: Re: enter to save and move to the next row
Post by: paramvir on October 26, 2023, 06:25:15 pm
Please use this:

Code: [Select]
editModel: {           
     onSave: 'downFocus'
},

Example: https://paramquery.com/pro/demos/import-xlsx
Title: Re: enter to save and move to the next row
Post by: omerix on October 26, 2023, 07:00:09 pm
Worked. thanks a lot
Title: Re: enter to save and move to the next row
Post by: omerix on October 26, 2023, 07:09:14 pm
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.
Title: Re: enter to save and move to the next row
Post by: omerix on October 26, 2023, 08:02:22 pm
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)
Title: Re: enter to save and move to the next row
Post by: paramvir on October 27, 2023, 07:14:09 am
Please use the selectEnd event to put the cell into edit mode.

Code: [Select]
selectEnd: function(evt, ui){
var sel = ui.selection.getSelection();
this.editCell(sel[0]);
},
Title: Re: enter to save and move to the next row
Post by: omerix on November 21, 2023, 10:29:29 pm
Thanks param.