jqGrid排序图标操作
如何打开/关闭排序图标?从另一篇帖子我看到了这个似乎将它们关闭:$("#gbox_list .s-ico span").hide()
。但相应的代码似乎并没有再次打开它们:$("#gbox_list .s-ico span").show()
。 ??
你如何操纵它们?即:如何以编程方式设置第二列以显示 asc 排序箭头(而不在其他列上显示箭头)?
How can you toggle the sort icons on/off? From another post I saw this seems to turn them off: $("#gbox_list .s-ico span").hide()
. But this corresponding code did NOT seem to turn them on again: $("#gbox_list .s-ico span").show()
. ??
And how can you manipulate them? Ie: How can you programatically set the second column to show the asc sort arrow (and not show the arrow on other columns)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你试过吗:
$("#gbox_list .s-ico span").toggle();
单击 1 应隐藏/显示,单击 2 应反转。
have you tried:
$("#gbox_list .s-ico span").toggle();
click 1 should hide/show and click 2 should reverse.
试试这个:
其中“id”是网格的 id
try this:
where "id" is id of the grid