Is there a callback that I can call after the table is drawn and completely done?
I'm using an ajax data source.
In my columns declaration, I'm using the "render" option to render
<
div> tags with specific classes.
I then have event listeners that attach to those classes so that I can do additional stuff (like open a modal, expand children, etc).
when I set my 'initComplete' option function to look for all of my specific classes, it can't find any because they aren't drawn yet.
I'm just looking for a "everything's done" event. Anyone?