ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: vijay@spinetechnologies on April 11, 2022, 05:03:13 pm

Title: Get the changesset of grid
Post by: vijay@spinetechnologies on April 11, 2022, 05:03:13 pm

Hello,

I am binding a grid of multiple editable columns, The grid can contains N no records. Users can change the values for the available cells (End User cannot add/delete Records).

Now after the user change, I want rows with only a change of cells. i.e. The data at the time of grid render time and the data after the update of no of rows.
Title: Re: Get the changesset of grid
Post by: paramvir on April 12, 2022, 10:21:34 am
you can get this information from getChanges method by passing format: 'byVal' parameter.

https://paramquery.com/pro/api#method-getChanges

old values are stored in oldList and new values in updateList.