Flowers4Algernon Posted November 13, 2021 Report Share Posted November 13, 2021 Hello guys! Just sharing this "workaround" that I did as I wanted my collapsible groups to show like this: So what I did was set the group classes to display: none on CSS using this syntax: .cbResultSetGroup1Left, .cbResultSetGroup2Left{ display: none; And I also hid two columns using this code: #target table:nth-of-type(1) th:nth-of-type(2) {display: none;} #target table:nth-of-type(1) th:nth-of-type(3) {display: none;} The code above will hide the column headers for the two groups I have adjusted. The images below are my header and footer elements Header: Footer: So, that's it! Hope you find this helpful. Also, do you guys know any other workarounds? Quote Link to comment Share on other sites More sharing options...
0 Flowers4Algernon Posted November 13, 2021 Author Report Share Posted November 13, 2021 Oh, I forgot to add that I have used this other forum post to hide my tabular columns: Quote Link to comment Share on other sites More sharing options...
0 futurist Posted October 3, 2022 Report Share Posted October 3, 2022 Hi, Jus to add, you may refer to this link on how to hide multiple sibling elements all at once: Quote Link to comment Share on other sites More sharing options...
Question
Flowers4Algernon
Hello guys!
Just sharing this "workaround" that I did as I wanted my collapsible groups to show like this:
So what I did was set the group classes to display: none on CSS using this syntax:
.cbResultSetGroup1Left, .cbResultSetGroup2Left{
display: none;
And I also hid two columns using this code:
#target table:nth-of-type(1) th:nth-of-type(2) {display: none;}
#target table:nth-of-type(1) th:nth-of-type(3) {display: none;}
The code above will hide the column headers for the two groups I have adjusted.
The images below are my header and footer elements
Header:
Footer:
So, that's it! Hope you find this helpful.
Also, do you guys know any other workarounds?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.