The column mentioned (ahead_back_same) is a Select option, with drop down values,
{
title: "AHEAD / BACK SAME", dataIndx: "ahead_back_same", dataType: "string",
align: "center", halign: "center", width: 125, editor: {
type: 'select', options: [{ "Yes": "Yes" }, { "No": "No" }]
}
}
If I remove the $("#grid_wire_details").pqGrid("refresh") line, then the grid doesn't refreshes and the changed values are not reflected.
The errors often comes, after/at the cellSave Event. There is also one refresh present.
So Instead of refreshing entire grid, tried refreshing the particular row, using RefreshRow method. at both places CellSave, and EditorEnd events. It seems the errors which are coming reduced almost.
For this scope, it is properly working. need to check further for other areas/scope.
Thanks.