扩展 jqgrid 子网格
我有一个带有子网格的 jqgrid。如何在无需单击加号的情况下展开子网格?
我遇到了 $("#jqgrid_id").expandSubGridRow(rowId);
但不确定使用哪个 rowId 来扩展子网格。
谢谢。
I have a jqgrid that has a subgrid. How can I expand the subgrid without having to click on the plus sign?
I came across $("#jqgrid_id").expandSubGridRow(rowId);
but am unsure which rowId to use to expand the subgrid.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在网格的 onSelectRow 事件中使用
$("#jqgrid_id").expandSubGridRow(rowId);
。像这样的事情:
编辑:在 GridComplete 事件
Use
$("#jqgrid_id").expandSubGridRow(rowId);
in the onSelectRow Event of the grid.Something like this:
EDITED: on GridComplete event
将 getDataIds() 更改为 getDataIDs()!
Change getDataIds() to getDataIDs()!