JQGrid - 我们如何制作自定义行详细信息

发布于 2024-09-30 14:22:02 字数 178 浏览 2 评论 0原文

有人给了我一些示例代码来使我的网格像这样。我在文档中读到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掀纱窥君容 2024-10-07 14:22:02

在页面自定义行详细信息上,您可以看到如何使用subGridRowExpanded 事件句柄,用于将自定义 HTML 数据显示为子网格数据。一般来说,如果你有任何标准的 jqGrid,你可以很容易地实现它。您只需将 subGrid: true 添加到网格并定义 subGridRowExpanded ,将 html 附加到子网格:

subGridRowExpanded: function(subgrid_id, row_id) {
    var html = "<span>Some HTML text which corresponds the row with id="+
               row_id + "</span><br/>";
    $("#" + subgrid_id).append(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 define subGridRowExpanded which append html to the subgrid:

subGridRowExpanded: function(subgrid_id, row_id) {
    var html = "<span>Some HTML text which corresponds the row with id="+
               row_id + "</span><br/>";
    $("#" + subgrid_id).append(html);
}

You can see this live here:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文