JQGrid - 我们如何制作自定义行详细信息
有人给了我一些示例代码来使我的网格像这样。我在文档中读到 jqgrid 仅支持子网格。
喜欢 Hierachy 中的此页面 http://trirand.net/demoaspnetmvc.aspx
谢谢!
Some one give me the some Sample Code to make my Grid like this.I read in document that jqgrid just supports subgrid.
like this page in Hierachy http://trirand.net/demoaspnetmvc.aspx
thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在页面自定义行详细信息上,您可以看到如何使用subGridRowExpanded 事件句柄,用于将自定义 HTML 数据显示为子网格数据。一般来说,如果你有任何标准的 jqGrid,你可以很容易地实现它。您只需将
subGrid: true
添加到网格并定义subGridRowExpanded
,将 html 附加到子网格:您可以看到这个实时 此处:
On the page Custom Row Detail you can see how you can use subGridRowExpanded event handle to show custom HTML data as subgrid data. In general if you have any standard jqGrid you can implement the same very easy. You should just add
subGrid: true
to the grid and definesubGridRowExpanded
which append html to the subgrid:You can see this live here: