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.
31 lines
772 B
31 lines
772 B
/** |
|
* Created by Dailer on 2017/7/12. |
|
*/ |
|
Demo.MultiSelectCombo = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "demo-exceltable" |
|
}, |
|
|
|
render: function () { |
|
var self = this; |
|
return { |
|
type: "bi.horizontal_auto", |
|
items: [{ |
|
type: "bi.multi_select_combo", |
|
ref: function (_ref) { |
|
self.numerical = _ref; |
|
}, |
|
itemsCreator:BI.emptyFn |
|
}, { |
|
type: "bi.label", |
|
ref: function (_ref) { |
|
self.label = _ref; |
|
}, |
|
text: "显示结果" |
|
}], |
|
vgap: 20 |
|
} |
|
} |
|
}) |
|
|
|
BI.shortcut("demo.musdflti_select_combo", Demo.MultiSelectCombo); |