Completed
Last Updated: 23 Aug 2016 09:29 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 08 Aug 2016 07:26
Category: RichTextEditor
Type: Bug Report
0
FIX. RichTextEditorRibbonBar - missing string in the RichTextBoxLocalizationProvider for a label in the InsertHyperlinkDialog
Please refer to the attached screenshot. It is not possible to localize the marked label.

Workaround:

 Sub New()
     InitializeComponent() 
     Me.RadRichTextEditor1.RichTextBoxElement.InsertHyperlinkDialog = New CustomInsertHyperlinkDialog()
 End Sub

 Public Class CustomInsertHyperlinkDialog
     Inherits InsertHyperlinkDialog
     Protected Overrides Sub OnLoad(e As EventArgs)
         MyBase.OnLoad(e)
         Me.Controls("radLabel4").Text = "My address"
     End Sub
 End Class

Attached Files:
0 comments