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.

45 lines
1.2 KiB

7 years ago
/**
* Created by Dailer on 2017/7/11.
*/
Demo.TextValueCombo = BI.inherit(BI.Widget, {
props: {
baseCls: ""
},
render: function () {
var self = this;
7 years ago
return {
type: "bi.horizontal_auto",
items: [{
type: "bi.editor_icon_check_combo",
ref: function () {
self.combo = this;
},
7 years ago
watermark: "默认值",
width: 200,
height: 24,
value: 2,
7 years ago
items: [{
7 years ago
// text: "MVC-1",
7 years ago
value: "1"
}, {
7 years ago
// text: "MVC-2",
7 years ago
value: "2"
}, {
7 years ago
// text: "MVC-3",
7 years ago
value: "3"
}]
}, {
type: "bi.button",
width: 90,
height: 25,
text: "setValue为空",
handler: function () {
self.combo.setValue()
}
7 years ago
}],
vgap: 20
7 years ago
};
7 years ago
}
7 years ago
});
7 years ago
BI.shortcut("demo.editor_icon_check_combo", Demo.TextValueCombo);