如何使用jquery隐藏嵌套网格中的主网格列?

时间:2013-12-21 10:11:47

标签: jquery jqgrid

如何使用jquery隐藏嵌套网格中的主网格列?

我在两个子网格中有一个主网格,我只想隐藏主网格中的列。不需要从子网格中隐藏它

1 个答案:

答案 0 :(得分:0)

搞定了

   $('#gvSalesInvoiceSearch>tbody> tr').each(function () { if (i != 2) { $(item).children("th:eq(" + i + "), td:eq(" + i + ")").hide(); } var a = $(item).children("td:eq(" + i + ")").text(); if (a == "Total") { $(this).hide(); } });