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.
41 lines
1.2 KiB
41 lines
1.2 KiB
Demo.Func = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "demo-func" |
|
}, |
|
render: function () { |
|
return { |
|
type: "bi.vertical", |
|
hgap: 30, |
|
vgap: 20, |
|
items: [{ |
|
type: "bi.expander", |
|
el: { |
|
type: "bi.icon_text_node", |
|
cls: "pull-right-ha-font mvc-border", |
|
height: 25, |
|
text: "Expander" |
|
}, |
|
popup: { |
|
cls: "mvc-border", |
|
items: BI.createItems([{ |
|
text: "项目1", |
|
value: 1 |
|
}, { |
|
text: "项目2", |
|
value: 2 |
|
}, { |
|
text: "项目3", |
|
value: 3 |
|
}, { |
|
text: "项目4", |
|
value: 4 |
|
}], { |
|
type: "bi.single_select_item", |
|
height: 25 |
|
}) |
|
} |
|
}] |
|
}; |
|
} |
|
}); |
|
BI.shortcut("demo.expander", Demo.Func); |