event that fires when handsontable loads

RayLoveless picture RayLoveless · Dec 19, 2012 · Viewed 12.6k times · Source

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?

Answer

PostureOfLearning picture PostureOfLearning · Jun 27, 2013

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