|
|
|
@ -12516,7 +12516,7 @@ BI.Widget = BI.inherit(BI.OB, {
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_render: function(){ |
|
|
|
|
_render: function () { |
|
|
|
|
this.beforeCreate && this.beforeCreate(); |
|
|
|
|
this._initElement(); |
|
|
|
|
this._initEffects(); |
|
|
|
@ -58198,6 +58198,7 @@ BI.Table = BI.inherit(BI.Widget, {
|
|
|
|
|
_initFreezeScroll: function () { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
scroll(this.scrollBottomRight.element, this.scrollTopRight.element, this.scrollBottomLeft.element); |
|
|
|
|
|
|
|
|
|
// scroll(this.scrollBottomLeft.element, this.scrollTopLeft.element, this.scrollBottomRight.element);
|
|
|
|
|
|
|
|
|
|
function scroll (scrollElement, scrollTopElement, otherElement) { |
|
|
|
@ -58277,6 +58278,7 @@ BI.Table = BI.inherit(BI.Widget, {
|
|
|
|
|
createOneEl(i, j); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
function mergeRow (i, j) { |
|
|
|
|
var height = (preCol[j].attr("height") | 0) + rowSize + 1; |
|
|
|
|
preCol[j].attr("height", height).css("height", height); |
|
|
|
@ -59417,10 +59419,9 @@ BI.Table = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
|
|
_empty: function () { |
|
|
|
|
this.scrollBottomRight && this.scrollBottomRight.destroy(); |
|
|
|
|
this.topLeft && this.topLeft.destroy(); |
|
|
|
|
this.topRight && this.topRight.destroy(); |
|
|
|
|
this.bottomLeft && this.bottomLeft.destroy(); |
|
|
|
|
this.bottomRight && this.bottomRight.destroy(); |
|
|
|
|
BI.each(this.partitions._children, function (name, child) { |
|
|
|
|
child && child.destroy(); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function (items, header) { |
|
|
|
|