使用 + 隐藏列plus 用于在 jqgrid 中显示子网格

发布于 2024-12-21 13:02:00 字数 325 浏览 2 评论 0原文

知道如何隐藏带有 + 图标的列,该图标显示 asp mvc 的 jqgrid 的子网格。我有另一列显示子网格,我想隐藏加号列。有什么想法吗?谢谢。

Solution:    
  function OnGridInitialized() {
                 $('#UserSessionGrid').jqGrid('hideCol', 'subgrid');
             }

In c# code: 
 userSessionsGrid.ClientSideEvents.GridInitialized = "OnGridInitialized";

Any idea how I can hide the column with the + icons that displays the subgrid of a jqgrid for asp mvc. I have another column that displays the subgrid and I will like to hide the plus column. Any ideas? Thx.

Solution:    
  function OnGridInitialized() {
                 $('#UserSessionGrid').jqGrid('hideCol', 'subgrid');
             }

In c# code: 
 userSessionsGrid.ClientSideEvents.GridInitialized = "OnGridInitialized";

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

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

发布评论

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

评论(2

痴者 2024-12-28 13:02:00

带“+”号的列在很多意义上就是jqGrid的普通列。它的列名称为“subgrid”:

$('#list').jqGrid('hideCol', 'subgrid');

存在三种非常接近的情况:

  • 带有“+”或“-”符号的子网格列的名称为“subgrid”。如果使用 subgrid: true 选项,则它存在;
  • 带有复选框的多选列的名称为“cb”。如果使用选项multiselect: true,则它存在;
  • 具有行号的列的名称为“rn”。如果使用选项rownumbers: true,则它存在。

因此,可以根据 hideCol 隐藏列中的任何内容。另一方面,名称“subgrid”、“cb”和“rn”是保留名称,不能使用该名称作为 name 属性的值。

The column with "+" sign is in many sense just normal column of jqGrid. It has the column name "subgrid":

$('#list').jqGrid('hideCol', 'subgrid');

There are three very close cases:

  • subgrid column holding '+' or "-" signs has the name "subgrid". It exists if the option subgrid: true are used;
  • multiselect column with checkboxs has the name "cb". It exists if the option multiselect: true are used;
  • the column with row numbers has the name "rn". It exists if the option rownumbers: true are used.

So one can hide any from the columns with respect of hideCol. On the other side the names "subgrid", "cb" and "rn" are reserved names and one can't use the name as the value of the name property.

忘你却要生生世世 2024-12-28 13:02:00

我刚刚查看了 jqGrid 演示并对其运行了此演示,您可以在准备好的文档中运行它:

$(function(){
  $('td.ui-sgcollapsed').hide()
});

希望这就是您正在寻找的内容。

I just looked at the jqGrid demo and ran this against it, which you can run inside document ready:

$(function(){
  $('td.ui-sgcollapsed').hide()
});

hopefully this is what you are looking for.

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