@ -1,11 +1,16 @@
BI . DynamicDateTimeSelect = BI . inherit ( BI . Widget , {
BI . DynamicDateTimeSelect = BI . inherit ( BI . Widget , {
props : {
props : function ( ) {
baseCls : "bi-date-time-select"
return {
baseCls : "bi-date-time-select" ,
height : BI . SIZE _CONSANTS . LIST _ITEM _HEIGHT ,
} ;
} ,
} ,
render : function ( ) {
render : function ( ) {
var self = this ;
var self = this ;
var o = this . options ;
return {
return {
type : "bi.center_adapt" ,
type : "bi.center_adapt" ,
items : [ {
items : [ {
@ -41,7 +46,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
}
}
} ] ,
} ] ,
width : 60 ,
width : 60 ,
height : BI . SIZE _CONSANTS . LIST _ITEM _HEIGHT
height : o . height ,
}
}
} , {
} , {
type : "bi.label" ,
type : "bi.label" ,
@ -77,7 +82,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
}
}
} ] ,
} ] ,
width : 60 ,
width : 60 ,
height : BI . SIZE _CONSANTS . LIST _ITEM _HEIGHT
height : o . height ,
} , {
} , {
type : "bi.label" ,
type : "bi.label" ,
text : ":" ,
text : ":" ,
@ -106,7 +111,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
}
}
} ] ,
} ] ,
width : 60 ,
width : 60 ,
height : BI . SIZE _CONSANTS . LIST _ITEM _HEIGHT
height : o . height ,
} ]
} ]
} ]
} ]
} ;
} ;