user590586
user590586

Reputation: 3050

jqgrid set focus on first cell inside a row (not with cell id)

While using inline editing , Is there a way to set focus on the first cell inside a row, without using the cell id? Can the focus be set by the cell index number (position inside the row)?

Thank's In Advance.

Upvotes: 0

Views: 7736

Answers (1)

Oleg
Oleg

Reputation: 221997

If I understand you correct you need just use editCell method of the cell editing. For example

$("#list").jqGrid('editCell',1,3,true);

See the demo.

Upvotes: 4

Related Questions