Completed
Last Updated: 21 Jul 2023 08:14 by ADMIN
Release LIB 2023.2.731 (31 Jul 2023)
ADMIN
Todor
Created on: 04 Jun 2015 07:03
Category: RichTextBox
Type: Bug Report
5
RichTextBox: Resizing, maximizing or restoring a window which hosts RadRichTextBox containing table in Flow layout mode moves the table borders
If RadRichTextBox contains a table and is placed in a window and then the window is resized horizontally, the table border are moved unexpectedly and change their place relative to the content of the documen. If the window is maximized and/or restored, some of the borders disappear.

Workaround: Execute the following code snippet in window's or RadRichTextBox' SizeChanged event handler:
if (this.MyRadRichTextBox.ActiveEditorPresenter != null)
{
    this.MyRadRichTextBox.ActiveEditorPresenter.RecreateUI();
}
0 comments