Completed
Last Updated: 16 Sep 2015 08:19 by ADMIN
ADMIN
Hristo
Created on: 29 Apr 2015 11:05
Category: RichTextEditor
Type: Bug Report
1
FIX. RadRichTextEditor - the text of the second tab of the FloatingBlockPropertiesDialog should be "TextWrapping"
The LocalizeStrings method of the FloatingBlockPropertiesDialog refers to the "Documents_FindReplaceDialog_ReplaceWith" string. This should be "Documents_FloatingBlockPropertiesDialog_TextWrapping"

Workaround:
public Form1()
{
    InitializeComponent();

    FieldInfo fi = this.radRichTextEditor1.RichTextBoxElement.FloatingBlockPropertiesDialog.GetType().GetField("radPageViewPage2", BindingFlags.NonPublic | BindingFlags.Instance);
    RadPageViewPage textWrappingPage = (RadPageViewPage)fi.GetValue(this.radRichTextEditor1.RichTextBoxElement.FloatingBlockPropertiesDialog);
    textWrappingPage.Text = "TextWrapping";
}
Attached Files:
0 comments