如何在JQGrid TreeGrid中隐藏行之间的行

时间:2012-07-25 11:28:17

标签: css jqgrid

如何隐藏JQGrid TreeGrid之间的界限?

我试过了:

<table id="TreeGrid" style="border-bottom: 0px none;border-right: 0px none;">
    </table>

但这对我不起作用。

1 个答案:

答案 0 :(得分:1)

好的,现在想出来了:

.ui-jqgrid tr.ui-row-ltr td { border-bottom-style: none; border-right-style: none;}

我仍然不确定如何为#TreeGrid指定样式...

最后决定

#TreeGrid td { border-bottom-style: none; border-right-style: none;}