import { shortcut, Widget } from "@/core"; import { Msg } from "@/base"; @shortcut() export class TextValueCheckCombo extends Widget { static xtype = "demo.text_value_check_combo"; props = { baseCls: "" }; render() { const self = this; return { type: "bi.horizontal_auto", items: [ { type: "bi.text_value_check_combo", ref () { 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 () { BI.Msg.alert("", JSON.stringify(self.combo.getValue())); }, } ], vgap: 20, }; } }