I posted on stack overflow as well:
I have a custom enable/disable function before the calling of the auto complete. This causes multiple reference calls to the same jqgrid cell causing conflict. So during my double click event on the row where it's supposed to open up inline-editing. The row is taken and analyzed for what cells need to be enabled/disabled based on the record type it is. It determines the fields that are available by an associative array, serialized into a hidden field value, from the code behind during page load.
1 |
function tableRowDoubleClick(id, iRow, iCol, e) {<br />...<br />setCellEditabilityByRecordType(id);<br />... |