You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using handsontable with the minSpareRows set to 1.
When a new row is added I need to do some work:
validation (my template isn't necessarily valid!)
update row headers
update the underlying store (I've implemented a row filter where the grid sees a subset of the full set of rows, but shares the row contents to avoid copying - if a new row is added I need to add it to the full set)
Right now I can simulate the event by keeping my own count of rows, then compare that during the onchange event. But it feels a little fragile. I'd rather be told when handsontable thinks it has created a new row object.
The text was updated successfully, but these errors were encountered:
Handsontable 0.9.0-beta1 adds new callbacks afterCreateRow. You are welcome to test it. Until it is merged with master branch, you will need to checkout 0.9 branch
I'm using handsontable with the minSpareRows set to 1.
When a new row is added I need to do some work:
Right now I can simulate the event by keeping my own count of rows, then compare that during the onchange event. But it feels a little fragile. I'd rather be told when handsontable thinks it has created a new row object.
The text was updated successfully, but these errors were encountered: