fineui是帆软报表和BI产品线所使用的前端框架。
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.
 
 
 

27 lines
514 B

/**
* 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 BI.createWidget({
type: "bi.vertical",
vgap: 10,
items: [{
el:{
type: "bi.date_calendar_popup"
}
}]
})
}
})
BI.shortcut("demo.date", Demo.Date);