ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: jplevene on October 07, 2024, 03:55:43 pm
-
as it says in the title
rowData = {"field":1, "another":"something", "more":"hello"};
newData = {"field":0, "another":"0", "more":null};
Using
grid.updateRow( {
rowIndx: 2,
newRow: newData,
checkEditable:false
});
does not update the "empty" fields
-
Validation rules in those columns might be preventing the update.
Please share a jsfiddle if still facing issues.
-
Will do if I get the time.
To fix it I just did:
$.extend(row["rowData"], new_rowData);
grid.refreshRow({rowIndx:row["rowIndx"]});
I the original example I didn't include checkEditable:false in the example, but even if I did (which I did do in my code) the bug remains