Completed
Last Updated: 24 Nov 2014 14:34 by ADMIN
ADMIN
George
Created on: 12 Mar 2014 13:35
Category:
Type: Bug Report
2
FIX. RadRichTextBox - Poor performance when a few pages are being inserted
To reproduce:

Add a RadRichTextBox to a form and use the following code to add pages:

            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 1000; i++)
            {
                sb.Append("a word ");
            }

            for (int i = 0; i < 10; i++)
            {
                this.radRichTextEditor1.Insert(string.Copy(sb.ToString()));
                this.radRichTextEditor1.InsertPageBreak();
            }

You will notice the poor performance upon scrolling or modifying the text.

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
0 comments