Merge branch hotfix/v6.3.2 into master
This commit is contained in:
commit
bd0c5fe4a5
|
@ -476,7 +476,10 @@ define([
|
|||
}, this);
|
||||
this.dataViewItems = [];
|
||||
|
||||
this.store.each(this.onAddItem, this);
|
||||
var me = this;
|
||||
this.store.each(function(item){
|
||||
me.onAddItem(item, me.store);
|
||||
}, this);
|
||||
|
||||
if (this.allowScrollbar) {
|
||||
this.scroller = new Common.UI.Scroller({
|
||||
|
|
|
@ -198,7 +198,7 @@ define([
|
|||
if (innerEl) {
|
||||
(this.dataViewItems.length<1) && innerEl.find('.empty-text').remove();
|
||||
|
||||
if (opts && opts.at!==undefined) {
|
||||
if (opts && (typeof opts.at==='number')) {
|
||||
var idx = opts.at;
|
||||
var innerDivs = innerEl.find('> div');
|
||||
if (idx > 0)
|
||||
|
|
Loading…
Reference in a new issue