WebIX 加载图标旋转直至方法完成

问题描述 投票:0回答:1

在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
}
javascript node.js load webix
1个回答
0
投票

使用

$$("topView").hideProgress()
。从
delay
中删除
hide
showProgress

© www.soinside.com 2019 - 2024. All rights reserved.