Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图创建包含具有以下结构的行的网格:
item name, icon for delete, icon for sharing.
我正在尝试使用 JQGrid,但我找不到隐藏列名的方法(这不是必需的,我只需要来自服务器的数据)。
您知道可以在不显示列名的情况下创建 JqGrid 吗?还有其他可以提供帮助的替代方案吗?
谢谢,里奥
我已经找到了怎么做...
使用 firebug Iv'e 发现 JQGrid 将网格 div 名称命名为:gview_gridame。所以使用
gview_gridame
$('#gview_MyGridName .ui-jqgrid-hdiv').hide();
将从特定网格中删除标题。