Hi,
I have use this article :
https://blazor.syncfusion.com/documentation/calendar/globalization#blazor-webassembly
In using "SfCalendar" Component compiler set error :
.net 6 ijsruntime does not contain definition for "sf" . because
JsRuntime.Sf()
extension method is deprecated and moved its functionalities to SyncfusionBlazorService
.
code: [
@using Syncfusion.Blazor.Calendars
@inject HttpClient Http;
@code {
[Inject]
protected IJSRuntime JsRuntime { get; set; }
protected override async Task OnInitializedAsync()
{
this.JsRuntime.Sf().LoadLocaleData(await Http.GetJsonAsync<object>("blazor-locale/src/de.json")).SetCulture("de");
}
}
]
what is replace for LoadLocaleData method?
help me. please.