View all changes to table

Tags: #<Tag:0x00007efc728da868> #<Tag:0x00007efc728da5e8>

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?

Hi @anthony.gls

Generally, for data changes, we have the

beforeChange

afterChange

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