我在ios
环境的worklight 6.1版本中使用busyindicator,并想知道如何增加指标的高度和宽度。用于显示我正在使用的忙碌指示器的代码
busyInd = new WL.BusyIndicator('content', {text : 'Loading Data Please Wait....'});
busyInd.show() //for showing indicator
busyInd.hide() // for Hiding indicator
它显示我busyIndicator,但它非常小,文字太长,没有正确显示。我想自定义高度和宽度。我可以这样做,或者有没有办法做到这一点,或者你可以为我提供语法。
答案 0 :(得分:3)
您需要使用boxLength
属性as mentioned in the documentation for WL.BusyIndicator。
例如,在common\main.js
:
var busy;
function wlCommonInit(){
busy = new WL.BusyIndicator ("content", {text : 'Loading Data Please Wait....', boxLength: 255.5});
busy.show();
}
P.S。, 这里有一个轻微的文档问题;我已经打开了一个缺陷来纠正它。