Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hello,
I would like to suggest the following feature: two types for sidebar. For example:
TypeBelowMediaQuery="SidebarType.Over"
The goal is for the sidebar to behave differently on a phone than a desktop computer. For example, on a phone it is better to cover the content than to push it because there is no space, pushing is pointless. On desktop "over" is pointless (usually).
Second feature, related to this: on the phone the sidebar should be closed after menu click. On desktop should not. So, how to close sidebar after treeview node click? I am now using:
NodeClicked="() =>SidebarToggle=false"
But, how to close only mobile version of sidebar? Solution: just make additional two toggles:
IsOpenBelowMediaQuery = "SidebarToggleMobile"
IsOpenAboveMediaQuery = "SidebarToggleDesktop"
Then I can use:
With those two features, the sidebar will be able to configure much better on different screen sizes.
Thanks.