Sidebar active Panel Menu

HI
I have RadzenPanelMenuItem starting with same Url,

when I redirect to another page the panel menu item which has base url remain active,
image

how to fix this ?
thank you

Hi @bikash_paudyal,

You have set Match to NavLinkMatch.All which is why this item will always highlight. Remove that setting.

HI
Problem remain same even after remove that setting.

Try setting the Match attribute of RadzenPanelMenu:

 <RadzenPanelMenu Match="NavLinkMatch.All">
    <RadzenPanelMenuItem Text="Home" Path="" />
    <RadzenPanelMenuItem Text="Profile" Path="Account/Manage/" />
    <RadzenPanelMenuItem Text="TwoFactorAuthentication" Path="Account/Manage/TwoFactorAuthentication" />
    <RadzenPanelMenuItem Text="PersonalData" Path="Account/Manage/PersonalData" />
</RadzenPanelMenu>

It Works !
Thank you @korchev :blush: