Completed
Last Updated: 20 Oct 2014 14:36 by Kishore
1) Launch the RadRichTextEditor
2) Create  a new file
3) go to insert tab and hit "Header" icon (Header & Footer section)
4) Notice the caret blinks on the top left corner of the document
5) Enter some text for ex: zzzz and notice text entered doesn't show up
5) At this point when you double click outside the header section the whole header and footer section is lost
6) Now double click on the header section again even though the header section is not visible. Still the entered text is not displayed and notice the cursor blinks at the top left corner of the header section
7) Press enter key, now the entered text is displayed. 
Completed
Last Updated: 13 Nov 2014 13:59 by Kishore
Run the RadRichTextEditor
Right click on any image -> Text Wrapping -> More layout options (as shown in the attached fig MoreLayoutOptions.jpg)
Observe that the more layout options doesn't show up most of the times.
Completed
Last Updated: 14 Oct 2014 12:10 by Kishore
Created by: Kishore
Comments: 0
Category: RichTextEditor
Type: Bug Report
0
Launch the RichTextEditor
1) Click the find and replace button on the ribbon bar
2) Close the find and replace dialog box
3) click the find/replace button again , the form doesn't open up
Completed
Last Updated: 27 Nov 2014 09:09 by ADMIN
Created by: Kishore
Comments: 3
Category: RichTextEditor
Type: Bug Report
0
Launch the RichTextEditor and observe the button are not completely visible and some/ most of the dialog boxes cannot be re sized.
--> Home Tab
1) Find/ Replace dialog box, button overlap the textboxes behind them
2) Change Styles , this dialog box cannot be re sized currently 

-->Insert Tab
1) Hyperlink dialog box, this dialog box cannot be re sized currently 
2) BookMarks dialog box, this dialog box cannot be re sized currently
3) Cross Reference dialog box, this dialog box cannot be re sized currently
4) Format Code block Dialog box, this dialog box cannot be re sized currently
5) Insert Symbol dialog box, this dialog box cannot be re sized currently

--> References tab
1) Manage Sources 
2) Insert Caption
3) Cross reference

--> Review tab
1) Spell check dialog box
2) Protect document
Completed
Last Updated: 27 Nov 2014 09:09 by Kishore
As shown in the attached screen shot when as spell checking dialog is opened , "Close button is not seen on the form even though it is present. Spell checking dialog box needs to be re sized.
Completed
Last Updated: 27 Nov 2014 09:10 by Kishore
When you open the color dialog, "Add custom color", "Ok" and "Cancel" buttons are not completely visible. Currently the dialog box can't be re-sized making it hard for the user to use as the button names are not visible so the user can't be sure what is being clicked. See the attached fig.
Completed
Last Updated: 20 Oct 2014 14:35 by Kishore
Created by: Kishore
Comments: 0
Category: RichTextEditor
Type: Bug Report
0
Can't see undo and redo button on the editor.
Completed
Last Updated: 20 Oct 2014 14:34 by Kishore
Steps:
1) Launch the RichTextEditor
2) Clear the existing contents or open a new file (using File-> New)
3) Insert a table of any dimensions for ex: 2x2
4) Delete the above added table
5) Now try to insert a new table of any dimensions (For ex: 2x2)
6) You will get the following exception when you run the project using vs2010
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
7) In the demo application , you will see a Form1 error pop up opens up and makes the RichTextEditor completely blank
Completed
Last Updated: 20 Oct 2014 14:34 by Kishore
Steps:
1) Launch The RichTextEditor
2) Clear all the existing content
3) Type some text for ex: zzzz
4) Select the whole text and try to hit the backspace 
5) The typed text is not cleared and even you keep hitting the backspace the text is not cleared sometimes, it just stays
Completed
Last Updated: 17 Feb 2016 09:13 by ADMIN
To reproduce:
- Import the following string using the HtmlFormatProvider:
 "<html><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n  </head>\r\n  <body text=\"#000000\" bgcolor=\"#FFFFFF\">\r\n    Hej\r\n\r\n      <title>Sv: Tekniska </title>\r\n      \r\n\r\n    <br>\r\n    <pre>-- \r\nMvh Anders\r\n<a class=\"moz-txt-link-abbreviated\" href=\"http://www.abc.se\">www.abc.se</a></pre>\r\n  </body>\r\n</html>"

Workaround:
- Put a space or between the </a> and </pre> tags.
Completed
Last Updated: 31 May 2016 06:43 by ADMIN
To reproduce:
- Paste some text with a barcode font in a RadRichTextBox.
- Export to a pdf document.
- In the pdf document the text is not displayed as barcode.
Completed
Last Updated: 17 Feb 2016 13:03 by ADMIN
When importing HTML files if the font from the style contains serif element the font does not get interpreted correctly. For example "font-family: 'Times New Roman','serif';" - this will not work, but this font-family: 'Times New Roman';" will work.
Completed
Last Updated: 17 Feb 2016 21:05 by Svetlin
If you import a rtf document, it produces a span instances with highlight color property set to ARGB(255,0,0,0).

Workaround:

foreach (Span span in document.EnumerateChildrenOfType<Span>())
{
    if (span.HighlightColor == Color.FromArgb(255, 0, 0, 0))
    {
        span.HighlightColor = Color.Transparent;
    }
}
Completed
Last Updated: 11 Dec 2015 13:47 by ADMIN
To reproduce, add a theme in design time and open the ThemeName drop down from the editor's SmartTag
Completed
Last Updated: 09 May 2016 09:02 by Svetlin
Invisible borders in html format are imported as black borders in RadRichTextBox

Resolution: 
This issue is addressed in the new version of the control - RadRichTextEditor. Please use the new control instead the RadRichTextBox. 
3 4 5 6 7 8