I'm trying to do some DOM manipulations after handsontable finishes loading/initializing.
Does handsontable have some event that is triggered after it finishes building itself?
There is no need to alter code anymore as there are built in events for this:
afterInit ()
- Callback fired after Handsontable instance is initiated.
afterLoadData ()
- Callback fired after new data is loaded (by loadData method) into the data source array.
afterRender ()
- Callback fired after Handsontable table is rendered.
For a full list of events see here