且构网

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

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

更新时间:2023-12-05 17:33:28

简单,用 CSS 隐藏即可.您的选择器需要比内置的 Kendo 类更具体.您可以为此使用网格的 ID.

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

如果您想移除加载掩码,您也可以使用 CSS 来实现.

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

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