附件是我们为 iOS 上的繁忙指示器实现的代码。但这不会包装 iOS 上的 busyText。
$.r.setBusyIndicator(new WL.BusyIndicator('content', {
opacity : 0.65,
fullScreen : false,
text : busyText
}));
附件是我们为 iOS 上的繁忙指示器实现的代码。但这不会包装 iOS 上的 busyText。
$.r.setBusyIndicator(new WL.BusyIndicator('content', {
opacity : 0.65,
fullScreen : false,
text : busyText
}));
包装不可用。
您可以完全使用不同的忙碌指示器:您自己的本机忙碌实现,或由 3rd 方库(jQuery Mobile,...)提供的指示器等。
否则,您需要使用boxLength
控制包含文本的繁忙方块的高度和宽度的属性,如下所示:
var busy = new WL.BusyIndicator(null, {
text: "Ouverture de session",
boxLength: 170 // Play with this value.
});
busy.show();
相关问题:IBM Worklight 6.1 - 如何自定义 WL.BusyIndicator 的高度和宽度?