在Webix中我有这样的方法
function show_progress_icon(delay) {
$$("topView").disable();
$$("topView").showProgress({
type: "icon",
delay: delay,
hide: true
});
setTimeout(function () {
$$("topView").enable();
}, delay);
}
这是基于作为输入给出的延迟。
相反,如何在某些代码开始时执行 showProgress 并在代码末尾隐藏?
例如,我想要这个
function A() {
//showProgress Icon
//Do Some Tasks
//hideProgress Icon
}
使用
$$("topView").hideProgress()
。从 delay
中删除 hide
和 showProgress
。