1

在此处输入图像描述我在页面中有多个饼图和网格,因此必须滚动页面才能查看图表。

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

我正在使用“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'
                    }

                ]
4

1 回答 1

1

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

location.hash = '#chart' + chartNumber;
于 2013-10-10T15:59:54.793 回答