English 中文(简体)
jqGrid, 无头盔
原标题:jqGrid without header
  • 时间:2010-03-23 14:02:13
  •  标签:
  • jqgrid

我试图说明如何把头盔拆解为支架,这样一列名的行文不显示。 迄今为止,我没有找到解决办法。 是否有办法这样做?

最佳回答

我看不出这一gin子给你任何选择,但你可以找到并隐藏着头盔的集装箱。

...set up grid...

$( .ui-jqgrid-hdiv ).hide();
问题回答

扣押财产隐藏在头部。

我很晚才知道,但对于那些仍然想要知道的人来说。 在寻找来文方之后便发现了这一点。

这项工作:

var grid = $("#GRID_NAME");
var gview = grid.parents("div.ui-jqgrid-view");
gview.children("div.ui-jqgrid-hdiv").hide();

不清楚为什么没有人提出安保部的解决办法。

.ui-jqgrid-hdiv {
  display:none !important;
}

如果你有其他的网格会受到影响,则你可以使用一个包裹的集装箱。

这部法典对我来说是“jqGrid”版本5.7。

var tableId = document.getElementById( gridTablId ).getAttribute("aria-labelledby");
document.querySelector("#" + tableId + " .ui-jqgrid-htable thead").style.display = "none";

选择如下:<代码>hidegrid:虚假。

参看。 是否有可能从jqGrid的头盔中去除扩张/col带吗?





相关问题
Retrieving original row data from jqGrid

It is possible to use the getRowData method to retrieve the current of a cell but this retrieves the current cell content rather than the original data before it went through the formatter. How do I ...

How to programmatically select top row of JQGrid?

How does one programmatically select the top row of a JQGrid. I want to have the top row already selected when it is opened on the page. My grid is sorted by a descriptive column so the first row s id ...

Blank when NaN in jqGrid cells

How to set blank instead of NaN in jqGrid cells ? Using formatter ? Is there an example?

complete jqGrid?

Please, can anyone tell me how to use jqGrid? I want to do edit, add & delete functionality. Also I want to show an image in the grid Please tell me, what can I do, and how can I do?

jqGrid: is there an event for when columns are reordered?

I m using the column reordering feature in jqGrid $grid = jQuery("#list").jqGrid({ sortable:true, ... }); Is there an event that fires after columns are re-ordered? If there is, I can t see ...

Wrapping Text lines in JqGrid

Can you get lines of text to wrap in JqGrid? I have had a look round but i can t find anything.

using jqgrid style for usual Table in asp.net mvc

I d prefer using Table and td instead of JqGrid but i like JqGrid styles. has anyone used jqgrid style for usual Grid of asp.net MVC(i mean Table and td) before?

热门标签