ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: EPM Solutions on August 24, 2018, 11:53:03 am

Title: how t ochange the default functionality of editFirstCellInRow
Post by: EPM Solutions on August 24, 2018, 11:53:03 am
Here I have question regarding , whenever i use editFirstCellInRow after entering the value and pressing enter js highlights next adjacent cell of next column. Here I want to change it to lower cell in same column instead on next column.

EX: 
Title: Re: how t ochange the default functionality of editFirstCellInRow
Post by: paramvir on August 24, 2018, 03:34:29 pm
This is answered here:

https://paramquery.com/forum/index.php?topic=1463.msg6426#msg6426
Title: Re: how t ochange the default functionality of editFirstCellInRow
Post by: EPM Solutions on August 24, 2018, 04:18:05 pm
Thank you for the answer, here I need one more option, if I press shift+tab, it should go previous cell as well.
Title: Re: how t ochange the default functionality of editFirstCellInRow
Post by: paramvir on August 27, 2018, 10:51:24 am
for shift key, evt.shiftKey is true and key code is $.ui.keyCode.TAB for tab key.

I guess you can make the necessary change.
Title: Re: how to change the default functionality of editFirstCellInRow
Post by: EPM Solutions on August 27, 2018, 06:23:09 pm
yes it is working,

but here we have requirement like, we have done row grouping. so am getting stuck because group header row is not editable. so once the cursor comes to group header row it will not go further if I click enter button. Can I get the solution for that.

i have attached the Image below group header is mentioned using yellow color, and others cells are particular column is editable. and one requirement like, once it reaches Last row if I press enter it should come first editable cell of that particular column.
Title: Re: how t ochange the default functionality of editFirstCellInRow
Post by: paramvir on August 27, 2018, 10:51:13 pm
you can go past those rows with up / down key

and home key can be used to jump to top row.