-
Hello all, I am new to Blazor and have started a project using Blazorise. How I can change dynamically sidebar menu content? Thanks for any help |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @KroMignon Dynamic binding can be done with a few For reference look at our older |
Beta Was this translation helpful? Give feedback.
-
You probably need to trigger rerender when |
Beta Was this translation helpful? Give feedback.
You probably need to trigger rerender when
AppData.ShowFullMenu
changes. So just callInvokeAsync(()=>StateHasChanged())
somewhere in your page to trigger it.