-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#863 [HxSidebar] Do not collapse parent item with Href on click when …
…expanded
- Loading branch information
Showing
3 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 18 additions & 18 deletions
36
Havit.Blazor.Documentation/Pages/Components/HxSidebarDoc/HxSidebar_Demo.razor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
<HxSidebar> | ||
<HeaderTemplate> | ||
<HxSidebarBrand BrandName="Brand name" BrandNameShort="BN"/> | ||
</HeaderTemplate> | ||
<HeaderTemplate> | ||
<HxSidebarBrand BrandName="Brand name" BrandNameShort="BN" /> | ||
</HeaderTemplate> | ||
|
||
<ItemsTemplate> | ||
<HxSidebarItem Text="Dashboard" Href="TEST" Icon="BootstrapIcon.Columns" TooltipText="Dashboard" /> | ||
<ItemsTemplate> | ||
<HxSidebarItem Text="Dashboard" Href="/components/HxSidebar/dashboard" Icon="BootstrapIcon.Columns" TooltipText="Dashboard" /> | ||
<HxSidebarItem Text="Employees (plain)" Icon="BootstrapIcon.People" TooltipText="Employees (plain)"> | ||
<HxSidebarItem Text="Overview" Href="/HxSidebarTest#x1" Match="NavLinkMatch.All"/> | ||
<HxSidebarItem Text="Absences" Href="TEST"/> | ||
</HxSidebarItem> | ||
<HxSidebarItem Text="Mine (with icons)" Href="TEST" Icon="BootstrapIcon.Person"> | ||
<HxSidebarItem Text="Overview" Icon="BootstrapIcon.Wallet2" Href="#"/> | ||
<HxSidebarItem Text="Timesheets" Icon="BootstrapIcon.Clock"Href="TEST"/> | ||
<HxSidebarItem Text="Absences" Icon="BootstrapIcon.Exclamation" Href="TEST"/> | ||
</HxSidebarItem> | ||
<HxSidebarItem Text="Administration" Href="TEST" Icon="BootstrapIcon.Gear"/> | ||
</ItemsTemplate> | ||
<HxSidebarItem Text="Overview" Href="/components/HxSidebar/employees" Match="NavLinkMatch.All" /> | ||
<HxSidebarItem Text="Absences" Href="/components/HxSidebar/absences" /> | ||
</HxSidebarItem> | ||
<HxSidebarItem Text="Mine (with icons)" Href="/components/HxSidebar/mine" Icon="BootstrapIcon.Person"> | ||
<HxSidebarItem Text="Overview" Icon="BootstrapIcon.Wallet2" Href="/components/HxSidebar/mine" Match="NavLinkMatch.All" /> | ||
<HxSidebarItem Text="Timesheets" Icon="BootstrapIcon.Clock" Href="/components/HxSidebar/mine/timesheets" /> | ||
<HxSidebarItem Text="Absences" Icon="BootstrapIcon.Exclamation" Href="/components/HxSidebar/mine/absences" /> | ||
</HxSidebarItem> | ||
<HxSidebarItem Text="Administration" Href="/components/HxSidebar/admin" Icon="BootstrapIcon.Gear" /> | ||
</ItemsTemplate> | ||
|
||
<FooterTemplate> | ||
<HxSidebarFooter Href="/login" Icon="BootstrapIcon.Person" Text="@(context.SidebarCollapsed ? null : "Login")"/> | ||
</FooterTemplate> | ||
<FooterTemplate> | ||
<HxSidebarFooter Href="/components/HxSidebar/login" Icon="BootstrapIcon.Person" Text="@(context.SidebarCollapsed ? null : "Login")" /> | ||
</FooterTemplate> | ||
</HxSidebar> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters