@ -94,7 +94,7 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser,
populate: function (items) {
this._initData(items);
this.combo.populate.apply(this.combo, arguments);
this.combo.populate();
}
});
@ -93,7 +93,7 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, {
@ -97,7 +97,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, {
@ -49,8 +49,9 @@ BI.TreeValueChooserPane = BI.inherit(BI.AbstractTreeValueChooser, {
return this.buildCompleteTree(this.combo.getValue());
},
populate: function () {
this.pane.populate.apply(this.pane, arguments);
this.pane.populate();
BI.TreeValueChooserPane.EVENT_CHANGE = "EVENT_CHANGE";
@ -185,8 +185,8 @@
.ztree li span.button.switch {
width: 25px;
width: 24px;
height: 25px
height: 24px
.ztree li span.button.noline_open {
@ -26,7 +26,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
itemsCreator: o.itemsCreator,
valueFormatter: o.valueFormatter,
logic: {
dynamic: true
dynamic: false
// onLoaded: o.onLoaded,
el: {},
@ -163,8 +163,8 @@ BI.MultiSelectTree = BI.inherit(BI.Single, {
this.searcher.populate.apply(this.searcher, arguments);
this.searcher.populate();
this.adapter.populate.apply(this.adapter, arguments);
this.adapter.populate();
BI.MultiSelectTree.EVENT_CHANGE = "EVENT_CHANGE";
@ -334,7 +334,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
@ -349,7 +349,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
@ -373,7 +373,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {