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.
44 lines
1011 B
44 lines
1011 B
8 years ago
|
/**
|
||
|
* Created by Dailer on 2017/7/11.
|
||
|
*/
|
||
|
Demo.Date = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-date"
|
||
|
},
|
||
|
|
||
|
_init: function () {
|
||
|
Demo.Date.superclass._init.apply(this, arguments);
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
|
||
|
return {
|
||
|
type: "bi.horizontal_auto",
|
||
|
vgap: 10,
|
||
|
items: [{
|
||
|
type: "bi.date_combo",
|
||
|
width: 300
|
||
|
}, {
|
||
|
type: "bi.date_picker",
|
||
|
width: 300
|
||
|
}, {
|
||
|
type: "bi.date_trigger",
|
||
|
width: 300
|
||
|
}, {
|
||
|
type: "bi.date_calendar_popup",
|
||
|
width: 300
|
||
|
}, {
|
||
|
type: "bi.date_triangle_trigger",
|
||
|
width: 300
|
||
|
}, {
|
||
|
type: "bi.calendar",
|
||
|
logic: {
|
||
|
dynamic: true
|
||
|
},
|
||
|
width: 300
|
||
|
}]
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
BI.shortcut("demo.all_date_widget", Demo.Date);
|