I created Blazor Server application on .NET 8 RC2 where I am using a lot of Radzen components. When I am setting the render mode of the application to InteractiveServer from App.razor page then everything is working fine. However, when I set it on page level then the button clicks are firing but when I try to open Radzen dialog then it is not opening. I set InteractiveServer render mode both for my page and for the dialog that I am trying to use. Please elaborate if we should enable InteractiveServer mode from app level to be able to use Radzen components properly.
You can check this thread: Multiple declarations of Radzen services needed for .net 8 RC1 render modes
Basically you need to set the @rendermode
of <RadzenDialog />
if you are using it in a component which is statically rendered.
Thanks a lot, that solved the issue.