forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
860 B
33 lines
860 B
7 years ago
|
/**
|
||
|
* Created by Dailer on 2017/7/13.
|
||
|
*/
|
||
|
Demo.YearQuarterCombo = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: ""
|
||
|
},
|
||
|
render: function () {
|
||
|
var self=this;
|
||
|
return {
|
||
|
type: "bi.horizontal_auto",
|
||
|
items: [{
|
||
|
type: "bi.year_quarter_combo",
|
||
|
width: 300,
|
||
|
ref:function(_ref){
|
||
|
self.widget=_ref;
|
||
|
},
|
||
|
yearBehaviors: {},
|
||
|
quarterBehaviors: {},
|
||
|
}, {
|
||
|
type: "bi.button",
|
||
|
text: "getValue",
|
||
|
handler:function(){
|
||
|
BI.Msg.toast(JSON.stringify(self.widget.getValue()))
|
||
|
},
|
||
|
width: 300
|
||
|
}],
|
||
|
vgap: 20
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
BI.shortcut("demo.year_quarter_combo", Demo.YearQuarterCombo);
|