We have an application architecture that keeps the page hidden until the page is rendered and all data has been bound to it. We are trying to include the jqxGrid in this architecture. We are running into an issue because we want to add data to the grid after it is already created, but the only injection points seem to be the binding-complete event, the initialized event and the ready callback. However, because the page is hidden, the initialized event and the ready callback don’t fire. The binding complete event seems to be too early because we get JavaScript errors when we call deleterow or addrow from within our event handler.
We are trying to find an event or callback where we can safely call deleterow and addrow and selectrow while the page is still hidden. Is there anything between the binding-complete event and the initialized event that we can tap into?