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.
20 lines
382 B
20 lines
382 B
7 years ago
|
/**
|
||
|
* Created by Dailer on 2017/7/11.
|
||
|
*/
|
||
|
Demo.Month = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-exceltable"
|
||
|
},
|
||
|
render: function () {
|
||
|
return {
|
||
|
type: "bi.horizontal_adapt",
|
||
|
items: [{
|
||
|
type: "bi.month_combo",
|
||
|
width: 300
|
||
|
}]
|
||
|
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
BI.shortcut("demo.month", Demo.Month);
|