Reputation: 4126
I have an editable Jqgrid(where when im clicking on a row, that row get editable) with 3 dropdown lists in it, what i want is:
I know its a long one, but i cant get path keyboard selection because im stuck with clickable edit....
Upvotes: 1
Views: 3563
Reputation: 221997
If you don't use multiselect:true
you can use bindKeys method to have keyboard support.
If you need to change the order of focus on Tab pressing you can change tabindex
attribute on the editable fields (input or select elements). You can use oneditfunc
parameter of editRow for such initialization actions.
Upvotes: 2