I have primary key of my row as hidden field in my jQGrid. It is called "UserId"
colNames: ['UserId', "Details" ...],
colModel: [{ name: 'UserId', index: 'UserId', editable: false, hidden: true },
{ name: 'Details', index: 'Details', editable: true, editactioniconscolumn: true },
...]
I get worked create and update cases but i have an issue with delete
Because when delete i am getting an Id
of the grid row back on controller and not UserId
,
I can keep all UserId's
in grid id, that is what i am currently done to make delete work, but i am wondering is there any way to get my hidden UserId
getting posted instead of grid row Id.