I tried to priovide a custom localization provider for RadPageView with no success.
To use the localization provider I did
SharedLocalizationManager is just a shared class that provides localization string (a simple select case) for both RadDockLocalizationProvider and RadPageViewLocalizationProvider.
RadDockLocalizationProvider is working fine but RadPageViewLocalizationProvider is not working at all (the GetLocalizedString function is never called)
I am using the Q3 2010 dlls (trial version).
Thank you in advance
Public Class PageViewLocalizationProvider Inherits Telerik.WinControls.UI.RadPageViewLocalizationProvider Public Overrides Function GetLocalizedString(ByVal id As String) As String Return SharedLocalizationManager.GetLocalizedString(id) End FunctionEnd Class
To use the localization provider I did
Telerik.WinControls.UI.RadPageViewLocalizationProvider.CurrentProvider = New PageViewLocalizationProvider()SharedLocalizationManager is just a shared class that provides localization string (a simple select case) for both RadDockLocalizationProvider and RadPageViewLocalizationProvider.
RadDockLocalizationProvider is working fine but RadPageViewLocalizationProvider is not working at all (the GetLocalizedString function is never called)
I am using the Q3 2010 dlls (trial version).
Thank you in advance