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({
type: "bi.vertical",
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.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 4,
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,
@ -95464,7 +95465,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, {
type: "bi.vertical"
}]
}
},
innerVGap: 5
};
item.el.childValues = [];
BI.each(item.children, function (i, child) {
@ -104536,14 +104538,14 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
_getItemsByTimes: function (items, times) {
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]);
}
return res;
},
_hasNextByTimes: function (items, times) {
return times * 10 < items.length;
return times * 100 < items.length;
},
_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({
type: "bi.vertical",
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.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 4,
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,
@ -95713,7 +95714,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, {
type: "bi.vertical"
}]
}
},
innerVGap: 5
};
item.el.childValues = [];
BI.each(item.children, function (i, child) {
@ -104785,14 +104787,14 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
_getItemsByTimes: function (items, times) {
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]);
}
return res;
},
_hasNextByTimes: function (items, times) {
return times * 10 < items.length;
return times * 100 < items.length;
},
_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({
type: "bi.vertical",
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.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 4,
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,
@ -7433,7 +7434,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, {
type: "bi.vertical"
}]
}
},
innerVGap: 5
};
item.el.childValues = [];
BI.each(item.children, function (i, child) {
@ -16505,14 +16507,14 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
_getItemsByTimes: function (items, times) {
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]);
}
return res;
},
_hasNextByTimes: function (items, times) {
return times * 10 < items.length;
return times * 100 < items.length;
},
_itemsCreator: function (options, callback) {

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

@ -71,7 +71,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, {
BI.createWidget({
type: "bi.vertical",
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.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 4,
lgap: 1,
el: {
type: "bi.button_tree",
chooseType: 0,
@ -105,7 +106,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, {
type: "bi.vertical"
}]
}
},
innerVGap: 5
};
item.el.childValues = [];
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) {
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]);
}
return res;
},
_hasNextByTimes: function (items, times) {
return times * 10 < items.length;
return times * 100 < items.length;
},
_itemsCreator: function (options, callback) {

Loading…
Cancel
Save