如何确定数据网格中当前排序的标题列?
我想知道用户单击哪个标题来提供当前排序的视图。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mx.controls.DataGrid
有一个名为columns
的属性。此集合中的每一列都是一个 mx.controls.dataGridClasses.DataGridColumn 类型的对象,具有名为 sortDescending 的布尔属性。否则,您可以接收并处理 DataGrid 事件
headerRelease
。当用户在列标题上释放鼠标按钮时,会传输此事件,导致该列进行排序。The
mx.controls.DataGrid
has a property namedcolumns
. Each column in this collection is an object of typemx.controls.dataGridClasses.DataGridColumn
with a boolean property namedsortDescending
.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.