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.
43 lines
1.1 KiB
43 lines
1.1 KiB
/** |
|
* Created by Dailer on 2017/7/11. |
|
*/ |
|
Demo.TextValueCheckCombo = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "" |
|
}, |
|
render: function () { |
|
var self = this; |
|
return { |
|
type: "bi.horizontal_auto", |
|
items: [{ |
|
type: "bi.text_value_check_combo", |
|
ref: function () { |
|
self.combo = this; |
|
}, |
|
text: "默认值", |
|
//value: 1, |
|
width: 300, |
|
items: [{ |
|
text: "MVC-1", |
|
value: 1 |
|
}, { |
|
text: "MVC-2", |
|
value: 2 |
|
}, { |
|
text: "MVC-3", |
|
value: 3 |
|
}] |
|
}, { |
|
type: "bi.button", |
|
width: 90, |
|
height: 25, |
|
handler: function () { |
|
BI.Msg.alert("", JSON.stringify(self.combo.getValue())); |
|
} |
|
}], |
|
vgap: 20 |
|
}; |
|
} |
|
}); |
|
|
|
BI.shortcut("demo.text_value_check_combo", Demo.TextValueCheckCombo); |