ridecar2
ridecar2

Reputation: 1957

How do I show only the horizontal gridlines in jqGrid?

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

Answers (1)

Morteza
Morteza

Reputation: 2428

add in Css:

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

Upvotes: 2

Related Questions