如何在jqgrid中的标题标题网格中隐藏边框?

时间:2011-08-09 06:19:38

标签: jqgrid border hidden

如何在jqgrid中的标题标题网格中隐藏边框? 例如:colNames:['姓名','地址','学校']

1 个答案:

答案 0 :(得分:3)

如果我理解你的错误,你想拥有以下列标题

enter image description here

而不是标准

enter image description here

在这种情况下可以使用transparent边框:

<style type="text/css">
    th.ui-th-column { border-right-color: transparent !important }
</style>

查看相应的演示here。该演示仍然在列标题中显示悬停效果:

enter image description here

更新:如果您不想使用!important属性,可以使用以下替代

.ui-jqgrid-labels .ui-th-column { border-right-color: transparent }