附件是我们为iOS上的忙碌指示器实现的代码。但这并没有将busyText包装在iOS上。
$.r.setBusyIndicator(new WL.BusyIndicator('content', {
opacity : 0.65,
fullScreen : false,
text : busyText
}));
答案 0 :(得分:0)
包装不可用。
您可以完全使用不同的忙碌指示符:您本地繁忙的实现,或第三方库(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 - How to customize WL.BusyIndicator's height and width?