<link rel='nofollow' href="_content/Syncfusion.Blazor/styles/fabric.css" rel="stylesheet" />
|
I'm facing the same issue i just upgrade Syncfusion.Blazor.Grid and Card to Latest Version from 19.1.0.57. Even that it shows dropdowns as a textbox
Based on the reported problem, we suspect that the theme references are not correctly defined in your project, which is why you are facing this issue. To resolve this, please try the following suggestions to ensure that the necessary theme and script are included in your App.razor file.
If you are using Syncfusion.Blazor single NuGet. If this is the case, we
recommend referring to the attached code snippet and our documentation for
further assistance.
Note:If you are Syncfusion.Blazor single NuGet you don’t need to
install the Syncfusion.Blazor.Themes Nuegt.
App.Razor <html lang="en">
<head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <base rel='nofollow' href="/" /> <link rel="stylesheet" rel='nofollow' href="bootstrap/bootstrap.min.css" /> <link rel="stylesheet" rel='nofollow' href="app.css" /> <link rel="stylesheet" rel='nofollow' href="BlazorApp3.styles.css" /> <link rel="icon" type="image/png" rel='nofollow' href="favicon.png" /> <link rel='nofollow' href="_content/Syncfusion.Blazor/styles/bootstrap5.css" rel="stylesheet" /> <HeadOutlet /> </head>
<body> <Routes />
<script
src="_framework/blazor.web.js"></script>
<!--Use below script reference if you are using Syncfusion.Blazor Single NuGet-->
<script src="_content/Syncfusion.Blazor/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
</body>
</html>
|
Documentation: Getting
Started with Blazor DataGrid Component | Syncfusion