Hi!
I know how to add my own localized texts for editor's toolbar in the code-behind, but how do I do it for LinkManager dialogbox? I'd like to use my own database and custom ResourceProviderFactory.
Example how I do it for toolbar:
I know how to add my own localized texts for editor's toolbar in the code-behind, but how do I do it for LinkManager dialogbox? I'd like to use my own database and custom ResourceProviderFactory.
Example how I do it for toolbar:
Dim editor As New Telerik.Web.UI.RadEditor editor.EditModes = EditModes.Design Dim toolGroup As New Telerik.Web.UI.EditorToolGroup editor.Tools.Add(toolGroup) Dim bold As New Telerik.Web.UI.EditorTool bold.Name = "Bold"bold.Text = HttpContext.GetGlobalResourceObject("Global", "editorBold") toolGroup.Tools.Add(bold)