ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: omerix on May 24, 2025, 11:59:21 pm

Title: Why are cells marked as dirty with updateRow track: false?
Post by: omerix on May 24, 2025, 11:59:21 pm
Hello paramquery team,

Even though I set track: false, the updated cells are still marked as dirty (e.g., red triangle).
How can I prevent cells from being marked as dirty after updateRow?


Code: [Select]
        grid.updateRow({
          rowList: [{
            rowIndx: ri,
            track: false,
            history: false,
            checkEditable: false,
            refresh: true,
            newRow: res.data
          }]
        });

res json
Code: [Select]
{
  "pr": 0,
  "data": {
    "dr": 0,
    "on": 1,
    "kbl": 20,
    "lock": false
  }
}

Thanks!



Title: Re: Why are cells marked as dirty with updateRow track: false?
Post by: paramvir on May 25, 2025, 12:31:40 pm
Please pass the params correctly

Code: [Select]
        grid.updateRow({
            track: false,
            history: false,
            checkEditable: false,
            refresh: true,
            rowList: [{
              rowIndx: ri,
              newRow: res.data
            }]
        });