且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Kendo Grid - 它自己的加载指示器

更新时间:2023-12-05 16:50:04

简单,只需用CSS隐藏即可。你的选择器需要比内置的Kendo类更具体。您可以使用Grid的ID。

  #grid .k-loading-image {
background-image:没有;





$ b

如果你想删除加载掩码,你也可以用CSS来完成。

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


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

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;
}