I have created a .Net 8 application and have been using Radzen. It has worked well with the design and will display the correct styles. But all buttons, date picker, drop downs, etc. are not firing at all. I followed the setup on the Get Started page and everything there is correct. A couple fixes I tried was changing the on App.razor to <Routes @rendermode=“InteractiveServer”/>. I also added app.MapBlazorHub() to the Program.cs. Even with these potential fixes, none of the components are firing still. I am using .Net 8 and Radzen.Blazor 5.1.11
Hi @Smitty3544,
It seems interactivity isn't enabled in your application at all. Check if <button @onclick=@OnClick>button</button> works. If it doesn't then you need to start from scratch and create an application with interactivity.
It seems that may be the issue. I am using Visual Studio to create this application, I do not see an option to create with interactivity
I am able to click on NavLink to navigate pages.
NavLink doesn't rely on interactivity. Test with handling the click event of a regular button <button>.
Here is how interactivity configuration looks by default in the VS template:
To solve the radzen interactivity problem with .Net 8* you have to do the following:
- Follow radzen's instructions as well as they say.
- In the file: App.razor add the line =>
<Paths @rendermode="Interactive Server" />
Enter the body tag ....

