按日期名称对数据表列进行排序
我有一个带有日期名称列的数据表。我想按日期名称对此列进行排序,例如,如果我有[星期五,星期一,星期日]排序应返回[星期一,星期五,星期日](升序)和[星期日,星期五,星期一](降序)。
我尝试使用自定义排序,但无法表示我的自定义顺序。
你有想法吗?
谢谢
I have a datatable with day name column. I want to sort this column by day name e.g. if I have [Friday, Monday,Sunday] sorting should return [Monday ,Friday, Sunday] (ascending) and [Sunday,Friday, Monday] (descending).
I tried to use custom sorting but I wasn't able to represent my custom order.
Do you have ideas ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决我的问题的方法。我创建了一个带有数值的隐藏列。排序将基于此列。这是自定义排序函数
和列定义:
希望这有帮助
I found a solution for my problem. I created a hidden column with numeric values. The sorting will be based in this column. This is the custom sort function
And the column defs :
Hope this helps