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.

24 lines
546 B

7 years ago
Demo.Button = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-button"
},
render: function () {
var items = [
{
el: {
7 years ago
type: "bi.icon_button",
7 years ago
cls: "close-ha-font",
width: 25,
height: 25
7 years ago
}
}
];
return {
type: "bi.left",
vgap: 200,
hgap: 20,
items: items
7 years ago
};
7 years ago
}
});
7 years ago
BI.shortcut("demo.icon_button", Demo.Button);