@ -13,6 +13,7 @@ BI.Pane = BI.inherit(BI.Widget, {
_baseCls : "bi-pane" ,
_baseCls : "bi-pane" ,
tipText : BI . i18nText ( "BI-No_Selected_Item" ) ,
tipText : BI . i18nText ( "BI-No_Selected_Item" ) ,
loadingText : "" ,
loadingText : "" ,
loadingSize : "small" ,
overlap : true ,
overlap : true ,
onLoaded : BI . emptyFn
onLoaded : BI . emptyFn
} ) ;
} ) ;
@ -41,25 +42,25 @@ BI.Pane = BI.inherit(BI.Widget, {
var loadingAnimation = BI . createWidget ( {
var loadingAnimation = BI . createWidget ( {
type : "bi.horizontal" ,
type : "bi.horizontal" ,
cls : "bi-loading-widget" + ( isIE ? " wave-loading hack" : "" ) ,
cls : "bi-loading-widget" + ( isIE ? " wave-loading hack" : "" ) ,
height : 30 ,
height : this . _getSize ( 60 ) ,
width : 30 ,
width : this . _getSize ( 60 ) ,
hgap : 5 ,
hgap : this . _getSize ( 10 ) ,
vgap : 2.5 ,
vgap : 2.5 ,
items : isIE ? [ ] : [ {
items : isIE ? [ ] : [ {
type : "bi.layout" ,
type : "bi.layout" ,
cls : "animate-rect rect1" ,
cls : "animate-rect rect1" ,
height : 2 5,
height : this . _getSize ( 50 ) ,
width : 3
width : this . _getSize ( 5 ) ,
} , {
} , {
type : "bi.layout" ,
type : "bi.layout" ,
cls : "animate-rect rect2" ,
cls : "animate-rect rect2" ,
height : 2 5,
height : this . _getSize ( 50 ) ,
width : 3
width : this . _getSize ( 5 ) ,
} , {
} , {
type : "bi.layout" ,
type : "bi.layout" ,
cls : "animate-rect rect3" ,
cls : "animate-rect rect3" ,
height : 2 5,
height : this . _getSize ( 50 ) ,
width : 3
width : this . _getSize ( 5 ) ,
} ]
} ]
} ) ;
} ) ;
// pane在同步方式下由items决定tipText的显示与否
// pane在同步方式下由items决定tipText的显示与否
@ -88,6 +89,10 @@ BI.Pane = BI.inherit(BI.Widget, {
this . element . addClass ( "loading-status" ) ;
this . element . addClass ( "loading-status" ) ;
} ,
} ,
_getSize : function ( v ) {
return Math . ceil ( v / ( this . options . loadingSize === 'small' ? 2 : 1 ) ) ;
} ,
_getLoadingTipItems : function ( loadingTip ) {
_getLoadingTipItems : function ( loadingTip ) {
var o = this . options ;
var o = this . options ;
var loadingTipItems = [ {
var loadingTipItems = [ {
@ -96,7 +101,8 @@ BI.Pane = BI.inherit(BI.Widget, {
} ] ;
} ] ;
BI . isNotEmptyString ( o . loadingText ) && loadingTipItems . push ( {
BI . isNotEmptyString ( o . loadingText ) && loadingTipItems . push ( {
type : "bi.text" ,
type : "bi.text" ,
text : o . loadingText
text : o . loadingText ,
tgap : this . _getSize ( 10 ) ,
} ) ;
} ) ;
return [ {
return [ {