|
|
@ -95430,7 +95430,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { |
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
|
type: "bi.vertical", |
|
|
|
type: "bi.vertical", |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [this.popup] |
|
|
|
items: [this.popup], |
|
|
|
|
|
|
|
vgap: 5 |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
@ -95456,7 +95457,7 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { |
|
|
|
item.el.height = self.constants.height; |
|
|
|
item.el.height = self.constants.height; |
|
|
|
item.el.iconCls2 = self.constants.nextIcon; |
|
|
|
item.el.iconCls2 = self.constants.nextIcon; |
|
|
|
item.popup = { |
|
|
|
item.popup = { |
|
|
|
lgap: 4, |
|
|
|
lgap: 1, |
|
|
|
el: { |
|
|
|
el: { |
|
|
|
type: "bi.button_tree", |
|
|
|
type: "bi.button_tree", |
|
|
|
chooseType: 0, |
|
|
|
chooseType: 0, |
|
|
@ -95464,7 +95465,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { |
|
|
|
type: "bi.vertical" |
|
|
|
type: "bi.vertical" |
|
|
|
}] |
|
|
|
}] |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
innerVGap: 5 |
|
|
|
}; |
|
|
|
}; |
|
|
|
item.el.childValues = []; |
|
|
|
item.el.childValues = []; |
|
|
|
BI.each(item.children, function (i, child) { |
|
|
|
BI.each(item.children, function (i, child) { |
|
|
@ -104536,14 +104538,14 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, { |
|
|
|
|
|
|
|
|
|
|
|
_getItemsByTimes: function (items, times) { |
|
|
|
_getItemsByTimes: function (items, times) { |
|
|
|
var res = []; |
|
|
|
var res = []; |
|
|
|
for (var i = (times - 1) * 10; items[i] && i < times * 10; i++) { |
|
|
|
for (var i = (times - 1) * 100; items[i] && i < times * 100; i++) { |
|
|
|
res.push(items[i]); |
|
|
|
res.push(items[i]); |
|
|
|
} |
|
|
|
} |
|
|
|
return res; |
|
|
|
return res; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_hasNextByTimes: function (items, times) { |
|
|
|
_hasNextByTimes: function (items, times) { |
|
|
|
return times * 10 < items.length; |
|
|
|
return times * 100 < items.length; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_itemsCreator: function (options, callback) { |
|
|
|
_itemsCreator: function (options, callback) { |
|
|
|