I have an application that has to run on multiple languages. The user can change the language on the fly at runtime. I really need a way to update the text in the group by header without reloading the entire gridview.
I have successfully set LocalizationManager.Manager to a new custom manager as below. The downside is that I have to reconstruct the gridview in code.
Is there any way to call an update or refresh on the gridview instead of creating a new one in code?
Thank you for the help.
Scott
I have successfully set LocalizationManager.Manager to a new custom manager as below. The downside is that I have to reconstruct the gridview in code.
LocalizationManager.Manager = new TelerikGridViewCustomLocalizationManager();
...
class TelerikGridViewCustomLocalizationManager : LocalizationManager
{
public override string GetStringOverride(string key)
{
return MyLocalization.GetResource(key);
}
}
Is there any way to call an update or refresh on the gridview instead of creating a new one in code?
Thank you for the help.
Scott