0
我通過這段代碼就在我開始一個長期運行的過程中創建一個新的WL.BusyIndicator ...是否可以更新WL.BusyIndicator中的文本消息?
if (gblShowBusyIndicator) {
busyIndicator = new WL.BusyIndicator('loader',
{text: 'Refreshing local sales data...',
opacity: 0.85,
fullScreen: true});
busyIndicator.show();
}
是否有可能在這個過程間歇更新「文本」參數?我試着調用這個函數,但它不起作用。有任何想法嗎?
function setBusyIndicatorStatus(status) {
try {
if (busyIndicator.isVisible()) {
busyIndicator({text: status});
}
} catch (e) {
if (gblLoggerOn) WL.Logger.debug(">> setBusyIndicatorStatus(" + status + ") failure... discarding");
}
}