据我所知,在 jqgrid 中排序会像这样 sortname: 'Key', sortorder: "asc",但每次 'Key' 显示它不是按数字顺序排列的。看起来像:
钥匙
1
10
100
1000
1001
1002
我的输出需要:
钥匙
1
2
3
4
5
有什么帮助吗?谢谢
据我所知,在 jqgrid 中排序会像这样 sortname: 'Key', sortorder: "asc",但每次 'Key' 显示它不是按数字顺序排列的。看起来像:
钥匙
1
10
100
1000
1001
1002
我的输出需要:
钥匙
1
2
3
4
5
有什么帮助吗?谢谢
您的代码摘录可能有用...尝试在您的 colmodel http://www.trirand.com/jqgridwiki/doku.php?id=wiki:colmodel_options中指定 sorttype 选项为int
您必须在要排序的特定 colModel 中分配 sorttype:'int'
例如。{名称:'Key',索引:'Key',宽度:100,对齐:'left',隐藏:false,sorttype:'int'}