-
I have a left drawer which is like the default drawer of the web app, and it stays open on pc screens on the left. Now on a part of the web app, a 2nd drawer needs to open from the right side. This works fine for me The problem is, when the right drawer is open, I want the default left drawer to not be focusable by the user, but it is, and even through the right drawer's overlay, I can click on items in the left drawer. How do I remove this behaviour? Left drawer should not be focusable as long as the right drawer is open. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You can control each drawer using the value of their checkboxes. And whenever a drawer is close (checkbox is unchecked) you can add Let me know if you have a question. |
Beta Was this translation helpful? Give feedback.
You can control each drawer using the value of their checkboxes. And whenever a drawer is close (checkbox is unchecked) you can add
inert
HTML attribute to its sidebar content.Let me know if you have a question.