Combobox Not Working on Syncfusion Doc Page for Blazor

I'm trying to add a Combobox on a Blazor Page and the dropdown is not working. I noticed this isn't working on the Syncfusion Blazor Doc page. Is there something wrong with Syncfusion's script or my PC?


1 Reply

UD UdhayaKumar Duraisamy Syncfusion Team March 7, 2025 04:16 PM UTC

It seems the issue you’re experiencing is due to an improper script reference. If the Syncfusion script is not correctly referenced, the component interaction will not occur. Please ensure you refer to the correct Syncfusion script at the end of the <body> in the ~/Components/App.razor file.
 
  • If you are using the standalone NuGet packages for Syncfusion.Blazor.Calendars and Syncfusion.Blazor.DropDowns, use the following script:
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
 
  • If you are using the Syncfusion.Blazor Single NuGet package, use this script:
<script src="_content/Syncfusion.Blazor/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
 
  • For .NET 8 or .NET 9 with Blazor Web app, define a render mode at the top of the ~Pages/.razor component as follows:
@rendermode InteractiveServer
 
Documentation:

If the issue persists after following these steps, could you please share the following details to help us provide a prompt solution?
  • A simple, runnable sample that illustrates the issue you are experiencing.
  • Steps to replicate the issue.
  • A video illustration of the issue.


Loader.
Up arrow icon