添付は、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
}));
ラッピングは承っておりません。
別のビジー インジケーターをまとめて使用できます: ネイティブのビジー実装、またはサード パーティ ライブラリ (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 の高さと幅をカスタマイズする方法は?