我正在尝试将数据视图滚动到特定位置。我正在Chrome中对此进行测试。我的数据视图中有一个scrollToSelected()
方法,用于计算滚动到的位置,然后调用:
var scroller = this.getScrollable().getScroller();
scroller.scrollTo(0, y, true);
当我选择触发scrollToSelected()
方法的列表项时,这是有效的。但是,在我第一次显示数据视图时select(id)
,它也会触发scrollToSelected()
。变量y
计算正确,但滚动不会发生。所以我在scroller.refresh()
之前的代码中添加了scrollTo()
,现在它可以运行了。但只有当Chrome的开发工具栏打开时。如果我在开发人员工具栏不存在时打开页面,则滚动永远不会发生。有什么想法吗?
修改 如果有帮助,可以使用更多代码请原谅任何明显的架构故障 - Sencha对我来说是一个完全不同的编码范例。这就是说,欢迎提出建议。
Ext.define('NC.controller.Cook', {
extend: 'Ext.app.Controller',
config: {
control: {
stepsPanel: {
swipe: 'stepSwipe', // this will eventually call goToStep
selectStep: 'goToStep' // if the user directly selects a step (by tap), this will be fired
},
cookPage: {
show: 'setup'
}
},
refs: {
cookPage: 'cookpage',
stepsPanel: 'stepspanel',
}
},
launch: function() {
this.current = 0;
this.last = 0;
},
setup: function() {
var sp = this.getStepsPanel();
sp.select(this.current);
},
stepSwipe: function(dataview, event, node, options, eOpts) {
this.last = this.current;
if (event.direction == 'up') {
if (this.current < dataview.getStore().data.length-1) {
this.current += 1;
}
} else if (event.direction == 'down') {
if (this.current > 0) { this.current -= 1; }
}
// Select the current step. It will trigger the dataView's select
// event which will end up calling goToStep.
dataview.select(this.current);
},
goToStep: function(dataview, record) {
dataview.scrollToSelected();
}
});
Ext.define('NC.view.cook.Steps', {
extend: 'Ext.DataView',
id: 'steps',
xtype: 'stepspanel',
config: {
flex: 1,
activeItem: 1,
itemTpl: '{text}',
selectedCls: 'current',
itemCls: 'step',
scrollable: true,
zIndex: 10,
listeners: {
// this is if the user doesn't swipe but directly selects one of the steps
select: function(dataview, record, eOpts) { dataview.fireEvent('selectStep', dataview, record); }
}
},
initialize: function() {
// set scrolling behaviours off without turning scrollable off
this.getScrollable().getScroller().onDragStart = null;
this.callParent();
var that = this;
this.element.on('swipe', function(event, node, options, eOpts) {
that.fireEvent('swipe', that, event, node, options, eOpts);
});
},
scrollToSelected: function() {
//var toTop = Ext.get(this.element).down(".current").getY();
var thisEl = Ext.get(this.element);
var current = thisEl.down(".current");
var prev = current;
var y = 0;
do {
prev = prev.prev('.step');
if (prev) { y += prev.getHeight(); }
}
while(prev);
y = y - ((thisEl.getHeight()-current.getHeight())/3) + 5000;
var scroller = this.getScrollable().getScroller();
scroller.refresh();
scroller.scrollTo(0, y, false);
}
})
编辑2:
鉴于“计时问题”的建议,我将select()
功能包装在setup
函数中,如下所示:
setTimeout(function() { sp.select(0); }, 10);
似乎现在正在工作!
答案 0 :(得分:2)
我为此使用了'maxpositionchanged'事件,只要列表的滚动条高度发生变化(当列表加载时)就会触发
me.getList().getScrollable().getScroller().on('maxpositionchange', function(s, max) {
if (!initialScrollDone && max.y >= me.ROW_HEIGHT*9) {
s.scrollTo(0, 120);
initialScrollDone = true;
}
});
ROW_HEIGHT是我自己指定的。
答案 1 :(得分:-2)
考虑到rdougan提出“计时问题”的建议,我用一个计时器将setup()包装在设置函数中,如下所示:
setTimeout(function() { sp.select(0); }, 10);
它现在有效,但我不知道它会有多强大。