ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: jplevene on October 07, 2024, 03:55:43 pm

Title: updateRow doesn't replace fields with empty values
Post by: jplevene on October 07, 2024, 03:55:43 pm
as it says in the title

Code: [Select]
rowData = {"field":1, "another":"something", "more":"hello"};

newData = {"field":0, "another":"0", "more":null};

Using

Code: [Select]
grid.updateRow( {
    rowIndx: 2,
    newRow: newData,
    checkEditable:false
});

does not update the "empty" fields
Title: Re: updateRow doesn't replace fields with empty values
Post by: paramvir on October 07, 2024, 04:12:25 pm
Validation rules in those columns might be preventing the update.

Please share a jsfiddle if still facing issues.
Title: Re: updateRow doesn't replace fields with empty values
Post by: jplevene on October 07, 2024, 04:15:46 pm
Will do if I get the time.

To fix it I just did:

Code: [Select]
$.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