Kendo Grid - its own Loading indicator

Vicky picture Vicky · Mar 15, 2013 · Viewed 14.4k times · Source

Kendo grid provides its own Loading indicator automatically when the grid is loaded, paging, sorting. It is working fine.

But I don't want this built-in loading indicator to be shown/hidden.

How can I disable this feature?

Please advise me.

Thanks, Vinoth

Answer

Matt B picture Matt B · Mar 15, 2013

Simple, just hide it with CSS. Your selector will need to be more specific than the built-in Kendo classes. You can use the Grid's ID for that.

#grid .k-loading-image {
    background-image: none;
}

If you want to remove the loading mask you can also accomplish that with CSS.

#grid .k-loading-color {
    opacity: 0;
}