guy 7 years ago
parent
commit
a57c364205
  1. 4
      bi/base.js
  2. 2
      bi/core.js
  3. 4
      dist/base.js
  4. 6
      dist/bundle.js
  5. 2
      dist/bundle.min.js
  6. 2
      dist/core.js
  7. 2
      src/base/table/table.grid.js
  8. 2
      src/base/table/table.grid.quick.js
  9. 2
      src/core/wrapper/layout/layout.td.js

4
bi/base.js

@ -31404,7 +31404,7 @@ BI.GridTable = BI.inherit(BI.Widget, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}
@ -31758,7 +31758,7 @@ BI.QuickGridTable = BI.inherit(BI.GridTable, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}

2
bi/core.js

@ -14579,7 +14579,7 @@ BI.TdLayout = BI.inherit(BI.Layout, {
return tr;
},
_mountChildren: function(){
_mountChildren: function () {
var self = this;
var frag = document.createDocumentFragment();
var hasChild = false;

4
dist/base.js vendored

@ -31404,7 +31404,7 @@ BI.GridTable = BI.inherit(BI.Widget, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}
@ -31758,7 +31758,7 @@ BI.QuickGridTable = BI.inherit(BI.GridTable, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}

6
dist/bundle.js vendored

@ -28138,7 +28138,7 @@ BI.TdLayout = BI.inherit(BI.Layout, {
return tr;
},
_mountChildren: function(){
_mountChildren: function () {
var self = this;
var frag = document.createDocumentFragment();
var hasChild = false;
@ -60275,7 +60275,7 @@ BI.GridTable = BI.inherit(BI.Widget, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}
@ -60629,7 +60629,7 @@ BI.QuickGridTable = BI.inherit(BI.GridTable, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -28087,7 +28087,7 @@ BI.TdLayout = BI.inherit(BI.Layout, {
return tr;
},
_mountChildren: function(){
_mountChildren: function () {
var self = this;
var frag = document.createDocumentFragment();
var hasChild = false;

2
src/base/table/table.grid.js

@ -382,7 +382,7 @@ BI.GridTable = BI.inherit(BI.Widget, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}

2
src/base/table/table.grid.quick.js

@ -229,7 +229,7 @@ BI.QuickGridTable = BI.inherit(BI.GridTable, {
function overscan(grid, w, h, rSize, cSize) {
var rCount = h / rSize;
var cCount = w / cSize;
if (cCount * (120 / rSize) >= 60 || rCount * (120 / cSize) >= 60) {
if (cCount * (120 / rSize) >= 80 || rCount * (120 / cSize) >= 80) {
grid.attr("overscanRowCount", 100);
grid.attr("overscanColumnCount", 100);
}

2
src/core/wrapper/layout/layout.td.js

@ -119,7 +119,7 @@ BI.TdLayout = BI.inherit(BI.Layout, {
return tr;
},
_mountChildren: function(){
_mountChildren: function () {
var self = this;
var frag = document.createDocumentFragment();
var hasChild = false;

Loading…
Cancel
Save