I need to implement a sought of onRendered()
event that would ensure all of the grid is rendered before I do something, which is to .hide()
it. My gaol is to have a .hide()
and .show()
button attached to the div
the grid resides in, with the default status set at hidden. The problem is that at the point in which my script executes the initial .hide()
, the grid is not fully created yet by the grid.js script. I would rather not do any delay loop. Much rather have a callback.
Any help would be appreciated
Thanks Pat