Is there an event in handsontable that it is trigger with any change in the data (not only editions) but if I create a new row, or a new column I get the new data.
`
function beforeAnyChange(newData, sourceEvent) {
}
`
new Data is an array with the new model.
[[1, 2, 3]] -> [[1,2,3,4]]
each action has its own callback. All the above action trigger some list of same callbacks, but only dedicated callbacks can get you some real feedback on what’s changed.
The beforeChange/afterChange hooks are those who will inform you on data edit, erase, paste, load. You may also want to read more about afterLoadData.