forked from fanruan/fineui
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.
24 lines
579 B
24 lines
579 B
7 years ago
|
/**
|
||
|
* Created by Windy on 2017/12/15.
|
||
|
*/
|
||
|
Demo.SQLEditor = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-editor"
|
||
|
},
|
||
|
render: function () {
|
||
|
this.formula = BI.createWidget({
|
||
|
type : 'bi.sql_editor',
|
||
|
width : 300,
|
||
|
height : 200,
|
||
|
value : 'select * from DEMO_CONTRACT'
|
||
|
});
|
||
|
BI.createWidget({
|
||
|
type: "bi.left",
|
||
|
element: this,
|
||
|
items: [this.formula],
|
||
|
hgap: 20,
|
||
|
vgap: 20
|
||
|
})
|
||
|
}
|
||
|
});
|
||
|
BI.shortcut("demo.sql_editor", Demo.SQLEditor);
|