maxazan / jquery-treegrid

TreeGrid plugin for jQuery
http://maxazan.github.io/jquery-treegrid
MIT License
553 stars 222 forks source link

Turn off Table Stripe #20

Open jeffhoang opened 10 years ago

jeffhoang commented 10 years ago

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.

YMA-MDL commented 9 years ago

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.