简体   繁体   English

Kendo UI网格-如何显示处理/加载百分比指标

[英]Kendo UI grid - How can I show a processing / loading percent indicator

Is there any way to show the processing percentage or a progress bar to show the loading progress to the user in Kendo grid. 有什么方法可以在Kendo网格中显示处理百分比或进度条以向用户显示加载进度。 Kindly share. 请分享。 -Philip- -Philip-

Take a look at the dataBinding and the dataBound event of the kendo.ui.Grid. 看看的dataBindingdataBound的kendo.ui.Grid的事件。 Pseudo code 伪代码

$("#grid").kendoGrid({
    dataBinding: function(e) {
        //show your processing modaL
        console.log("dataBinding");
    },
    dataBound: function(e) {
        //hide your processing modaL
        console.log("dataBound");
    }
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM