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.
28 lines
744 B
28 lines
744 B
import { shortcut, Widget, createWidget } from "@/core"; |
|
|
|
@shortcut() |
|
export class SignEditor extends Widget { |
|
static xtype = "demo.sign_editor"; |
|
|
|
props = { baseCls: "" }; |
|
|
|
render() { |
|
const editor = createWidget({ |
|
type: "bi.sign_editor", |
|
cls: "bi-border bi-focus-shadow", |
|
validationChecker(v) { |
|
return v != "abc"; |
|
}, |
|
watermark: "可以设置标记的输入框", |
|
text: "这是一个标记,点击它即可进行输入", |
|
}); |
|
editor.setValue(2); |
|
createWidget({ |
|
type: "bi.vertical", |
|
element: this, |
|
hgap: 30, |
|
vgap: 20, |
|
items: [editor], |
|
}); |
|
} |
|
}
|
|
|