Hi…
I created a new project, and I generated CRUD pages, I receive this error on all pages
I tryed to reinstall the programm also
Hi…
I created a new project, and I generated CRUD pages, I receive this error on all pages
I tryed to reinstall the programm also
Hi @Stefano_Carta,
This is probably due to a JS error introduced in the latest version of Radzen.Blazor. Try setting the Version attribute in the dependency (within the .csproj file) to a previous version until we release a fix. You can use 8.6.5. After changing the version stop Radzen Blazor Studio, delete all bin and obj directories and open the project again.
Hi KorchevI have this code in .csproj
where i have to change the version?
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<NoWarn>CS0168,CS1998,BL9993,CS0649,CS0436,0436</NoWarn>
<NuGetAuditMode>direct</NuGetAuditMode>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.*-*" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.*-*" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.*-*" />
<PackageReference Include="Radzen.Blazor" Version="*" />
<Compile Include="../Server/Models/**/*.cs" />
</ItemGroup>
<ItemGroup>
<ServiceWorker Include="../Server/wwwroot/service-worker.js" PublishedContent="../Server/wwwroot/service-worker.published.js" />
</ItemGroup>
</Project>
Here - set the Version attribute to 8.6.5:
<PackageReference Include="Radzen.Blazor" Version="8.6.5" />
thanks..now works fine
Meanwhile we released a fix that should address the problem - 8.7.3.