jquery-treegrid icon indicating copy to clipboard operation
jquery-treegrid copied to clipboard

Turn off Table Stripe

Open jeffhoang opened this issue 10 years ago • 1 comments

For a table with "table-striped", is it possible to turn off the table stripe for each child and its children row? Only allow stripes for the 1st level parent rows.

jeffhoang avatar Oct 11 '14 06:10 jeffhoang

I guess you could do it yourself. having a special class 'SPECIALCLASS' on 1st level parent and applying some css like

tr.SPECIALCLASS:nth-child(odd){
background-color: #XXX;
}

I didn't test it though, not sure if jquery-treegrid doesn't style it over.

YMA-MDL avatar May 07 '15 13:05 YMA-MDL