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
525 B
24 lines
525 B
/** |
|
* Created by Dailer on 2017/7/11. |
|
*/ |
|
Demo.SignInitialEditor = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "" |
|
}, |
|
render: function () { |
|
return { |
|
type: "bi.horizontal_adapt", |
|
items: [{ |
|
type: "bi.sign_initial_editor", |
|
cls:"layout-bg5", |
|
value:"123", |
|
text:"456", |
|
width: 300 |
|
}], |
|
vgap:20 |
|
|
|
} |
|
} |
|
}) |
|
|
|
BI.shortcut("demo.sign_initial_editor", Demo.SignInitialEditor); |