MVC 3 WebGrid 列按字母顺序排序,而不是根据表结构
我已将数据分配给网络网格,但它按字母顺序对列进行排序。它没有像 asp datagrid 中那样根据表结构显示列。
例如,如果表的列为“
id title artid
,则网格在将列排序后显示它们:
artid id title
I have assigned data to the webgrid but it sorting the columns alphabetically. it is not showing columns as like in asp datagrid according to table structure.
for example if table have columns as"
id title artid
then grid showing them after sorting the columns as:
artid id title
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您仍在寻找这个答案,我在这里找到了:
希望这会有所帮助!
If you are still looking for this answer I have found it here:
Hope this helps!
除了上面 Stuartmclark 的帖子之外,如果您想按降序排序,您可以在网格初始化后设置排序方向。
In addition to stuartmclark's post above, if you want to sort by descending, you can set the sort direction after your grid initialization.