Hi
We are using IgGrid with virtualization enabled. During data bind to the grid a black spinner (loading) image comes for few seconds.
How can we avoid showing this black loading image.
Thanks,
Kiran Kumar L
Hello Kiran,
You can simply select the DOM element of the spinner on DataBinding event and prevent it from showing like this:
$("#grid").igGrid({ dataBinding: function(evt, ui) { $("#grid_container_loading").css("display", "none"); }});
In this case "grid" is the id of your igGrid control.
Please let me know if you have further questions on the matter.
Hi Hristo,
Still black spinner comes up even after adding the dataBinding event as mentioned. Could you please provide another alternative.
Thanks Kiran..