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.
52 lines
1.4 KiB
52 lines
1.4 KiB
import { shortcut, Widget } from "@/core"; |
|
|
|
@shortcut() |
|
export class TextValueCombo extends Widget { |
|
static xtype = "demo.editor_icon_check_combo"; |
|
|
|
props = { baseCls: "" }; |
|
|
|
render() { |
|
const self = this; |
|
|
|
return { |
|
type: "bi.horizontal_auto", |
|
items: [ |
|
{ |
|
type: "bi.editor_icon_check_combo", |
|
ref() { |
|
self.combo = this; |
|
}, |
|
watermark: "默认值", |
|
width: 200, |
|
height: 24, |
|
value: 2, |
|
items: [ |
|
{ |
|
// text: "MVC-1", |
|
value: "1", |
|
}, |
|
{ |
|
// text: "MVC-2", |
|
value: "2", |
|
}, |
|
{ |
|
// text: "MVC-3", |
|
value: "3", |
|
} |
|
], |
|
}, |
|
{ |
|
type: "bi.button", |
|
width: 90, |
|
height: 25, |
|
text: "setValue为空", |
|
handler() { |
|
self.combo.setValue(); |
|
}, |
|
} |
|
], |
|
vgap: 20, |
|
}; |
|
} |
|
}
|
|
|