DEV Community

Discussion on: Toggle at top of the page, to expand/collapse all headers -elegant solution?

Collapse
 
saulhj profile image
SaulH • Edited

@madsstoumann
I'm trying to use aria-controls of CSS, even that is not quite working yet (will show a vid), but more importantly, is getting the js tied into it.
Alt Text

dev-to-uploads.s3.amazonaws.com/i/...

Collapse
 
madsstoumann profile image
Mads Stoumann • Edited

No, aria-expanded is just nformation, it doesn't do anything on it's own.
Check out the markup in my Codepen, the <details>-tag has the collapse/expand functionality built-in. And then you need a single button with a JS-method, that toggles the [open]-state (like the example in my comment).

Collapse
 
saulhj profile image
SaulH

@madsstoumann I don't see anything there, that enables me to do what I'm trying to do? O_o

TY/BR.

Thread Thread
 
madsstoumann profile image
Mads Stoumann

Then I might have misunderstood you?
I've made a new, small Codepen-example with a "Toggle All"-button:

codepen.io/stoumann/full/gOMJqyg

Thread Thread
 
saulhj profile image
SaulH • Edited

I think that's it, very close to what I was inching towards, thanks!

Hmm, could be tricky to readapt for my web app project (not all my work), a rats nest of different toolsets/frameworks etc, you name it.
But I will give it a shot...

The thing is though...

Our page has all of the headers collapsed when it first loads, will it know this, & thus, ensure the toggle button appear as "expand all"?
And then, however many times one toggles "expand all"/"collapse all", will it maintain knowledge of the 'state' - of all the table headers?
Within the current sesh of course; if the page is reloaded, presumably it'll go back to them all being collapsed, & wipe the state record.

Upon testing...
Your Codepen-example suggests it will satisfy all of the above^, BUT, it could be different when trying to merge into the entire project.

Thread Thread
 
saulhj profile image
SaulH

@madsstoumann

3 main files [.js, .scss, & .ejs] to give a better picture of the site -as currently implemented:
1drv.ms/u/s!AgX5ZmkXXVySlGRig44rsd...

And some screenshots & a video...
1drv.ms/u/s!AgX5ZmkXXVySlGZ53YwLwO...

Both are password protected, I'll message it to you or anyone who's happy to help.

Currently, there's code that keeps a count of opened table headers, & once a 4th one's opened;
It collapses the first of the 3 before the fourth. This functionality is now not wanted.
So I'd need to remove the current code, or readapt it...

All that's wanted now is a button near the top of the page, that toggles "expand-all/collapse-all".
One that fits in nicely with the current web app's aesthetic...

Thread Thread
 
saulhj profile image
SaulH

That's annoying, there used to be a way to message, but cant seem to do so for you now. Have a record of another person have msg'd previously, must've been switched off. Do you have Twitter?

Thread Thread
 
saulhj profile image
SaulH

@madsstoumann

Totally lost, tried to implement what you suggested, can't get it to work, tried several other approaches. :(

Thread Thread
 
saulhj profile image
SaulH

@madsstoumann ? Thanks again.

Thread Thread
 
madsstoumann profile image
Mads Stoumann • Edited

Hi again,
Sorry for the late reply, busy with work.
The reason why I suggested the <details>-tag is because the <details>-tag has the open-state. You should look into how to control that from your app. Probably something like: <details {{open}}>, where {{open}} will come from your state-object. Good luck!
/Mads

Collapse
 
saulhj profile image
SaulH

Seems I could also go this way? ...
getbootstrap.com/docs/4.5/componen...

And this one's mostly the same, cept with more of an MD aesthetic:
mdbootstrap.com/docs/jquery/javasc...
mdbootstrap.com/snippets/jquery/te...