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.
33 lines
751 B
33 lines
751 B
7 years ago
|
/**
|
||
|
* Created by Dailer on 2017/7/11.
|
||
|
*/
|
||
|
Demo.SignInitialEditor = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: ""
|
||
|
},
|
||
7 years ago
|
mounted: function () {
|
||
|
this.editor.setValue({
|
||
|
value: "123",
|
||
|
text: "sdga"
|
||
|
})
|
||
|
},
|
||
7 years ago
|
render: function () {
|
||
7 years ago
|
var self = this;
|
||
7 years ago
|
return {
|
||
|
type: "bi.horizontal_adapt",
|
||
|
items: [{
|
||
|
type: "bi.sign_initial_editor",
|
||
7 years ago
|
ref: function () {
|
||
|
self.editor = this;
|
||
|
},
|
||
|
cls: "layout-bg5",
|
||
|
text: "原始值",
|
||
7 years ago
|
width: 300
|
||
|
}],
|
||
7 years ago
|
vgap: 20
|
||
7 years ago
|
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
BI.shortcut("demo.sign_initial_editor", Demo.SignInitialEditor);
|