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
The documentation for getRowData
states:
Do not use this method when you editing the row or cell. This will return the cell content and not the actuall value of the input element
Is the row still being edited when you call getRowData()
?
Update
Agreed, jqGrid does not handle very well. In my application I actually was able to get around this by not specifying an edit option (meaning, key/value were both "FedEx"); the translation to ID is then done on the server. This is not the right way to code this, but it worked well enough for my needs at the time.