I need to add additional dynamic parameter to jqGrid's POST
data when I'm adding new record with modal form.
I tried:
$('#table').setPostData({group: id});
$('#table').setPostDataItem('group', id);
$('#table').setGridParam('group', id);
and nothing worked out.