数据网格和水平滚动策略

发布于 2024-08-13 16:54:02 字数 735 浏览 4 评论 0原文

看一下这段代码:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" horizontalScrollPolicy="off">
    <mx:VBox horizontalScrollPolicy="on" width="100%">
        <mx:DataGrid>
            <mx:columns>
                <mx:DataGridColumn width="5000" />

            </mx:columns>
        </mx:DataGrid>
    </mx:VBox>
</mx:Application>

数据网格超出了我的屏幕范围,但滚动条毫无用处。 为了向您展示我的意思,请查看此处的编译输出: http://dl.dropbox.com/u/1663633/prova.swf

有什么想法吗?当然,这是一个简单的示例,我的现实生活文件要复杂得多,滚动条必须位于 dataGrid 周围,而不是整个应用程序上。

look at this code:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" horizontalScrollPolicy="off">
    <mx:VBox horizontalScrollPolicy="on" width="100%">
        <mx:DataGrid>
            <mx:columns>
                <mx:DataGridColumn width="5000" />

            </mx:columns>
        </mx:DataGrid>
    </mx:VBox>
</mx:Application>

The datagrid is outside the limits of my screen, but the scrollbar is useless..
To show you what I mean, look at the compiled output here:
http://dl.dropbox.com/u/1663633/prova.swf

Any Idea? Of course this is a simple example, my real life file is much more complex and the scrollbar MUST be just around the dataGrid, not on the whole application.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乱了心跳 2024-08-20 16:54:02

问题是 VBoxApplication 大,即使您设置了 width="100%" 也是如此。我不清楚为什么它会出现这样的行为,但您可以通过在 VBox 上使用 width="{width}" 来强制它与应用程序的大小相同。

The problem is the VBox is bigger than the Application, even when you set width="100%". It's not clear to me why it (mis)behaves like that, but you can force it to be the same size as the Application by using width="{width}" on the VBox.

素手挽清风 2024-08-20 16:54:02

数据网格的布局引擎无法处理比数据网格本身更宽的列。对于小于数据网格的列,您不会遇到此问题。

例如,如果数据网格的宽度为 500 像素,并且您有多个 250 像素的列,则可以获得您正在寻找的滚动策略,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="500" layout="absolute" horizontalScrollPolicy="off">
    <mx:VBox >
        <mx:DataGrid width="500" horizontalScrollPolicy="on" >
            <mx:columns>
                    <mx:DataGridColumn headerText="a" width="250" />
                    <mx:DataGridColumn headerText="b" width="250" />
                    <mx:DataGridColumn headerText="c" width="250" />
                    <mx:DataGridColumn headerText="d" width="250" />
                    <mx:DataGridColumn headerText="e" width="250" />
                    <mx:DataGridColumn headerText="f" width="250" />

            </mx:columns>
        </mx:DataGrid>
    </mx:VBox>
</mx:Application>

即使列的总宽度大于数据网格,这也将起作用。

The layout engine for the datagrid is not able to handle a column wider than the datagrid itself. You will not have this problem with columns smaller than the datagrid.

For example, if the datagrid is 500 pixels wide and you have multiple columns of 250 pixels, you can get the scrolling policy you were looking for like this:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="500" layout="absolute" horizontalScrollPolicy="off">
    <mx:VBox >
        <mx:DataGrid width="500" horizontalScrollPolicy="on" >
            <mx:columns>
                    <mx:DataGridColumn headerText="a" width="250" />
                    <mx:DataGridColumn headerText="b" width="250" />
                    <mx:DataGridColumn headerText="c" width="250" />
                    <mx:DataGridColumn headerText="d" width="250" />
                    <mx:DataGridColumn headerText="e" width="250" />
                    <mx:DataGridColumn headerText="f" width="250" />

            </mx:columns>
        </mx:DataGrid>
    </mx:VBox>
</mx:Application>

This will work even if the total width of the columns is larger than the datagrid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文