如何以编程方式获取和设置 AdvancedDataGrid 中的列排序参数?
如何以编程方式获取和设置 AdvancedDataGrid
中的列排序参数?
我对指示用户已通过单击其标题对 AdvancedDataGridColumn
中的数据进行排序的值以及指示排序顺序的值特别感兴趣。我在 AdvancedDataGridColumn
文档中没有找到合适的属性。只有 sortDescending
属性,但这还不够。
How can I programmatically get and set column sorting parameters in AdvancedDataGrid
?
I'm especially interested in value that indicates that user have sorted data in AdvancedDataGridColumn
by clicking on its header and value that indicates sorting order. I haven't found appropriate properties in AdvancedDataGridColumn
documentation. There is only sortDescending
property, but that's not enough.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将列对象传递给 getFieldSortInfo(列)方法;它会给你一个 SortInfo 对象具有包含您需要的信息的
状态
(实际或建议)和降序
(布尔)变量。Pass the column object to the getFieldSortInfo(column) method; it will give you a SortInfo object that has
status
(actual or proposed) anddescending
(boolean) variables that contain the information you need.