forked from fanruan/fineui
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.
37 lines
1.0 KiB
37 lines
1.0 KiB
6 years ago
|
Demo.Func = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-func"
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
return {
|
||
|
type: "bi.vertical",
|
||
|
items: BI.createItems([{
|
||
|
text: "bi-list-item",
|
||
|
cls: "bi-list-item"
|
||
|
}, {
|
||
|
text: "bi-list-item-simple",
|
||
|
cls: "bi-list-item-simple"
|
||
|
}, {
|
||
|
text: "bi-list-item-effect",
|
||
|
cls: "bi-list-item-effect"
|
||
|
}, {
|
||
|
text: "bi-list-item-active",
|
||
|
cls: "bi-list-item-active"
|
||
|
}, {
|
||
|
text: "bi-list-item-active2",
|
||
|
cls: "bi-list-item-active2"
|
||
|
}, {
|
||
|
text: "bi-list-item-active3",
|
||
|
cls: "bi-list-item-active3"
|
||
|
}, {
|
||
|
text: "bi-list-item-select",
|
||
|
cls: "bi-list-item-select"
|
||
|
}], {
|
||
|
type: "bi.text_item"
|
||
|
}),
|
||
|
vgap: 10
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
BI.shortcut("demo.click_item_effect", Demo.Func);
|