Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1530
IgGrid - Avoid black spinner from showing
posted

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

Parents
No Data
Reply
  • 16310
    Suggested Answer
    Offline posted

    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.

Children