Completed
Last Updated: 07 Sep 2015 13:44 by ADMIN
ADMIN
Telerik Admin
Created on: 18 Sep 2013 17:12
Category: BusyIndicator
Type: Bug Report
8
BusyIndicator doesn't apply new Culture if changed dynamically
If you change the Culture at run-time and reload the control, the new culture doesn't apply.
2 comments
ADMIN
Kalin
Posted on: 07 Sep 2015 13:44
With LIB version 2015.2.907 we changed the localization implementation of BusyContent property. Now if you need to show the default text and support changing the culture at run time, you would need to clear the value of BusyContent property and reapply the control template of RadBusyIndicator right after changing the culture:

Thread.CurrentThread.CurrentCulture = new CultureInfo("es");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("es");
this.busyIndicator.ClearValue(RadBusyIndicator.BusyContentProperty);
this.busyIndicator.OnApplyTemplate();

Regards,
Kalin
ADMIN
Geri
Posted on: 20 Jul 2015 13:53
Available in LIB version 2015.2.720, it will be also available in the 2015 Q2 SP1.