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.
41 lines
1.1 KiB
41 lines
1.1 KiB
7 years ago
|
/**
|
||
|
* Created by Dailer on 2017/7/11.
|
||
|
*/
|
||
|
Demo.ClearEditor = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: ""
|
||
|
},
|
||
|
render: function () {
|
||
|
var editor;
|
||
|
return {
|
||
|
type: "bi.horizontal_auto",
|
||
|
items: [{
|
||
|
type: "bi.shelter_editor",
|
||
7 years ago
|
cls: "bi-border",
|
||
7 years ago
|
ref:function(_ref){
|
||
|
editor=_ref;
|
||
|
},
|
||
|
width: 300,
|
||
|
watermark: "这个是带标记的"
|
||
|
},{
|
||
|
type:"bi.button",
|
||
|
text:"setValue",
|
||
|
width:300,
|
||
|
handler:function(){
|
||
|
editor.setValue("凛冬将至");
|
||
|
}
|
||
|
},{
|
||
|
type:"bi.button",
|
||
|
text:"doHighLight",
|
||
|
width:300,
|
||
|
handler:function(){
|
||
|
editor.doHighLight();
|
||
|
console.log(editor.getState());
|
||
|
}
|
||
|
}],
|
||
|
vgap: 20
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
BI.shortcut("demo.shelter_editor", Demo.ClearEditor);
|