I have a couple of columns in jqGrid with edittype=\"select\". How can I read the option value of the value currently selected in a particular row?
e.g.: When I prov
You have to set the formatter of the column to 'select'
Example from the wiki:
colModel : [ {name:'myname', edittype:'select', formatter:'select', editoptions:{value:"1:One;2:Two"}} ... ]
See more here jqgridwiki
I was having the same problem and this worked like a charm