Browse Source

Pull request #3293: KERNEL-13948 docs: 修复combo_group demo接口错误

Merge in VISUAL/fineui from ~IMPACT/fineui:master to master

* commit '77470c130848ae9e43cbd322d5f2c90ba9b616bf':
  KERNEL-13948 docs: 修复combo_group demo接口错误
research/test
Impact-吴家豪 2 years ago
parent
commit
0588fa0a08
  1. 4
      demo/js/core/abstract/combination/demo.combo_group.js

4
demo/js/core/abstract/combination/demo.combo_group.js

@ -12,7 +12,7 @@ Demo.Func = BI.inherit(BI.Widget, {
height: 25,
iconCls: "close-ha-font"
},
children: [{
items: [{
type: "bi.single_select_item",
height: 25,
text: "一月",
@ -63,7 +63,7 @@ Demo.Func = BI.inherit(BI.Widget, {
},
width: 200
});
childCombo.setValue(BI.deepClone(this.child)[0].children[0].value);
childCombo.setValue(BI.deepClone(this.child)[0].items[0].value);
return BI.createWidget({
type: "bi.left",

Loading…
Cancel
Save