Selector for last row in a row group?

Selector for last row in a row group?

Murphy013Murphy013 Posts: 15Questions: 5Answers: 1

Hi all,

I created a table with a rowgroup and several filters. That works pretty fine.
Now I wanna finalize the gridline layout.
I do not wanna show surrounding gridlines ==> that works
I wanna show vertical gridlines ==> that works
I wanna show a bottom line below the column headers ==> that works
I do not wanna horizontal gridlines above and below rowgroup ==> that works only by 50% (for below)

I have no idea with which css selector i can hide the gridline above the rowgroup or to be more precise the bottom line of the last row of the previous rowgroup children.

Please have a look here:
http://live.datatables.net/xufuxeta/1/edit

I guess there is a knot in my brain

This question has accepted answers - jump to:

Answers

  • Murphy013Murphy013 Posts: 15Questions: 5Answers: 1
    Answer ✓

    Hi,

    i solved it. I don't know why I tried to get the last row of an rowgroup when it is much easier to get the first row of an rowgroup with:

        table tr.dtrg-group + tr td {
          border-top: none ! important;
        }
    

    Is it possible to set this topic with my own response to solved???

    Thanks

  • colincolin Posts: 15,142Questions: 1Answers: 2,586
    Answer ✓

    Thanks for reporting back, and apologies you had to reply so many times, the spam filter took offence to your post!

    Colin

Sign In or Register to comment.