在 jqgrid 中隐藏子网格标题

发布于 2024-12-21 18:19:49 字数 185 浏览 1 评论 0原文

我已经用子网格实现了 JQGrid。

我需要仅隐藏子网格标题(外部主网格标题应该仍然可见)。

我尝试在 subGridRowExpanded 上使用以下代码 $(".ui-jqgrid-hdiv", "#gbox_" + subgrid_id).hide() ,但这没有解决问题。

对此的任何帮助将不胜感激。

I have inplemented a JQGrid alog with a subgrid.

I have a requirement of hiding only the subgrid headers(the outer main grid headers should still be visible).

I tried using the following code $(".ui-jqgrid-hdiv", "#gbox_" + subgrid_id).hide() on subGridRowExpanded , which did not solve the problem.

Any help on this will be deeply appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

甜心小果奶 2024-12-28 18:19:49

尝试从主网格中隐藏 gridComplete 函数中的标题:

gridComplete: function() {
            var rowIds = $("#grid").getDataIDs();
            $.each(rowIds, function (index, rowId) {
                var subgridNameBasedOnRowId = "somesubgrid_" + rowId; //the name of my subgrid
                $(".ui-jqgrid-hdiv", "#gbox_" + subgridNameBasedOnRowId).hide();
            });
        }

Try to hide the header in the gridComplete function from the main grid:

gridComplete: function() {
            var rowIds = $("#grid").getDataIDs();
            $.each(rowIds, function (index, rowId) {
                var subgridNameBasedOnRowId = "somesubgrid_" + rowId; //the name of my subgrid
                $(".ui-jqgrid-hdiv", "#gbox_" + subgridNameBasedOnRowId).hide();
            });
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文