How Set Calture In Syncfusion Version 19?

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. 


1 Reply

SP Sureshkumar P Syncfusion Team March 22, 2022 09:29 AM UTC

Hi Hesam, 
 
You can achieve your requirement by referring the below common documentation. In our end will correct our component globalization documentation. And it will update to our documentation in any one of our upcoming updates. 
 
Refer the common globalization documentation: https://blazor.syncfusion.com/documentation/common/globalization  
 
We have created the WASM globalization sample based on common globalization documentation. Please find the sample here: https://www.syncfusion.com/downloads/support/directtrac/general/ze/WASMCulture1191672985  
 
Regards, 
Sureshkumar P 


Loader.
Up arrow icon