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
545 B
24 lines
545 B
Demo.Func = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "demo-func" |
|
}, |
|
|
|
render: function () { |
|
|
|
BI.createWidget({ |
|
type: "bi.vertical", |
|
element: this, |
|
items: [{ |
|
type: "bi.label", |
|
text: "只有一个图标的trigger" |
|
}, { |
|
type: "bi.icon_trigger", |
|
width: 30, |
|
height: 24 |
|
}], |
|
hgap: 20, |
|
vgap: 20 |
|
}); |
|
} |
|
}); |
|
BI.shortcut("demo.icon_trigger", Demo.Func); |