RadzenDatePicker Culture change does not reflect in language

Hi,

Have a Page => Component => RadzenDatePicker
On the culture change event from the GUI, doing a StateHasChanged on the component however the RadzenDatePicker month language does not change based on the culture.
Tried, setting current culture and as well Culture attribute of RadzenDatePicker.

If page navigates, RadzenDatePicker displays culture language based RadzenDatePicker month names.

How to make RadzenDatePicker rerender Culture language based month names after initial render has happened?

Check this, maybe can help:

Thanks for a quick reply. My question is about the Culture changes (user changes the culture from GUI) when on the page/component having RadzenDatePicker control. It does not change the month names display language

Can you reproduce this in our online demos? Setting the Culture works as expected for me.

<RadzenDatePicker Culture="@(new System.Globalization.CultureInfo("es-ES"))" @bind-Value=@value Name="RadzenDatePickerBindValue" ShowCalendarWeek />

You may need to enable globalization data for your application as well.

Hi, its hard to reproduce it in your online samples since page and component are needed. Here is a working sample of the issue:
SampleBlazorApp.zip (267.6 KB)

Enabling globalization data as per my previous post fixes the problem.

Thank you, in the sample I had missed BlazorWebAssemblyLoadAllGlobalizationData. In the actual project it has been already added however the month names aren't changing. Will try to replicate the issue within the sample and get back to you.