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.
31 lines
616 B
31 lines
616 B
7 years ago
|
/**
|
||
|
* Created by Dailer on 2017/7/12.
|
||
|
*/
|
||
|
Demo.FormulaCombo = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: ""
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
|
||
|
var self = this;
|
||
|
|
||
|
|
||
|
return {
|
||
|
type: "bi.horizontal_auto",
|
||
|
items: [{
|
||
|
type: "bi.formula_combo",
|
||
|
fieldItems: [{
|
||
|
text: "A",
|
||
|
value: "A",
|
||
|
fieldType: 16
|
||
|
}],
|
||
|
width: 200,
|
||
|
height: 30
|
||
|
}],
|
||
|
vgap: 20
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
BI.shortcut("demo.formula_combo", Demo.FormulaCombo);
|