Hello. Wondering if there is a built-in way to see what all the changes to the table were, ie before submitting to an API. Could I get either a “changes” variable/export or just a raw export and compare manually to the original data?
View all changes to table
Hi @anthony.gls
Generally, for data changes, we have the
hooks. If the user tries to remove/add rows and columns we add additional hooks called
There is no hook to track all of the CRUD changes. But you can make a deep clone of your dataset (using JSON.stringify()) and then compare it with the altered data.
1 Like