如何确定数据网格中当前排序的标题列?

发布于 2024-09-08 07:59:20 字数 102 浏览 8 评论 0原文

我想知道用户单击哪个标题来提供当前排序的视图。 Flex 框架中是否有 API 可以用来实现此目的?希望我能得到一个列索引,这样我就知道它当前是如何排序的。

谢谢, 麦克风

I want to know which header the user clicked on to give the currently sorted view.
Is there an API in flex framework that I can use to achieve this? Hopefully I can get back a column index so I know how it is currently sorted.

Thanks,
Mike

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

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

发布评论

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

评论(1

隐诗 2024-09-15 07:59:20

mx.controls.DataGrid 有一个名为columns 的属性。此集合中的每一列都是一个 mx.controls.dataGridClasses.DataGridColumn 类型的对象,具有名为 sortDescending 的布尔属性。

否则,您可以接收并处理 DataGrid 事件 headerRelease。当用户在列标题上释放鼠标按钮时,会传输此事件,导致该列进行排序。

The mx.controls.DataGrid has a property named columns. Each column in this collection is an object of type mx.controls.dataGridClasses.DataGridColumn with a boolean property named sortDescending.

Otherwise, you can receive and handle the DataGrid event headerRelease. This event is transmitted when the user releases the mouse button on a column header, causing the column to become sorted.

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