I am using slick grid. I have an input textbox. Whenever the content changes, I need to refesh the grid. So I set explicitInitialization as true.
I call
grid.init();
grid.invalidate();
in input textbox onchange. This works fine.
But I don't wan't to call init() every time. So, how to check if the grid is initialized?