Reputation: 1957
I have a jqGrid on my page, but it looks a bit too busy with all of the gridlines in there. Is there any simple way to only show the horizontal lines?
Thanks.
Upvotes: 2
Views: 2786
Reputation: 2428
add in Css:
.ui-jqgrid tr.ui-row-ltr td {
border-right-style: none;
border-left-style: none;
}
Upvotes: 2