页面在2.0rc1中自动滚动到顶部

时间:2013-10-10 12:44:15

标签: rally

enter image description here我在页面中有多个饼图和网格,因此必须滚动页面才能查看图表。

问题: 当单击网格中的分页或图表中的切片时,页面会自动滚动到顶部,因为每次用户必须向下滚动才能查看图表/网格。

我正在使用“App SDK 2.0 RC1”

对此有何解决方法?

示例代码:

items : [
                    {
                        xtype  : 'container',
                        id     : 'releaseBox',
                        layout : 'vbox'
                    },
                    {
                        xtype  : 'container',
                        id     : 'chart1',
                        layout : 'vbox'
                    },
                    {
                        xtype  : 'container',
                        id     : 'chart2',
                        layout : 'vbox'
                    },
                    {
                        xtype  : 'container',
                        id     : 'chart3',
                        layout : 'vbox'
                    },
                    {
                        xtype  : 'container',
                        id     : 'chart4',
                        layout : 'vbox'
                    },
                    {
                        xtype  : 'container',
                        id     : 'chart5',
                        layout : 'vbox'
                    }

                ]

1 个答案:

答案 0 :(得分:1)

您可以尝试为该事件添加侦听器,并添加此代码以滚动到所需的ID:

location.hash = '#chart' + chartNumber;