windy 6 years ago
parent
commit
7e19fcfecf
  1. 14
      dist/_fineui.min.js
  2. 12
      dist/bundle.js
  3. 12
      dist/bundle.min.js
  4. 12
      dist/fineui.js
  5. 14
      dist/fineui.min.js
  6. 12
      dist/widget.js
  7. 8
      src/widget/multilayerdownlist/popup.downlist.js
  8. 4
      src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

14
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/bundle.js vendored

@ -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) {

12
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/fineui.js vendored

@ -95679,7 +95679,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
}); });
}, },
@ -95705,7 +95706,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,
@ -95713,7 +95714,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) {
@ -104785,14 +104787,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) {

14
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/widget.js vendored

@ -7399,7 +7399,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
}); });
}, },
@ -7425,7 +7426,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,
@ -7433,7 +7434,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) {
@ -16505,14 +16507,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) {

8
src/widget/multilayerdownlist/popup.downlist.js

@ -71,7 +71,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
}); });
}, },
@ -97,7 +98,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,
@ -105,7 +106,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) {

4
src/widget/searchmultitextvaluecombo/multitextvalue.combo.search.js

@ -376,14 +376,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) {

Loading…
Cancel
Save