Unplanned
Last Updated: 09 Nov 2017 06:45 by ADMIN
When RadRichTextBox.DocumentInheritsDefaultStyleSettings is set to true, lists in the document are exported to HTML with Verdana font, instead of with the font applied in the UI.

Workaround: Use modification of the document default styles ("Normal") instead of setting DocumentInheritsDefaultStyleSettings  to true, e.g.:
this.radRichTextBox.Document.StyleRepository["Normal"].SpanProperties.FontFamily = new FontFamily("Segoe UI");
Unplanned
Last Updated: 08 Nov 2017 13:01 by ADMIN
For some font sizes, the end of the last letter or the start of first letter is clipped. The problem is most visible with italic styles and large font sizes, but is present even for small sizes and regular style.
Unplanned
Last Updated: 08 Nov 2017 12:14 by ADMIN
Workaround is to use the Classes StylesExportMode.
Unplanned
Last Updated: 07 Nov 2017 07:46 by ADMIN
Click event are not raised, and the command in the Command property is not executed, when a Button is placed inside InlineUIContainer, and is tapped on a touch device.

Workaround: One way to work around this is by setting TouchManager.TouchMode of the button to None, which will exclude the button from the TouchManager and will let the .NET events reach it. The other is to use the TouchManager Tap event instead of Command or Click.
Unplanned
Last Updated: 01 Nov 2017 15:15 by ADMIN
When a table is selected, the SelectionMiniToolbar should have a borders drop down menu which allows setting and editing of borders without entering the table borders dialog.
Unplanned
Last Updated: 23 Oct 2017 12:59 by Rick
The state of the button shows that the current paragraph is still in a list. The button state is updated after moving the caret using the mouse.

Steps to reproduce:
1. Create a list
2. Enter some text in the first item
3. Hit enter twice
Observed: The current paragraph is no longer part of a list but the list button remains active in the ribbon
Unplanned
Last Updated: 23 Oct 2017 12:37 by Rick
When the content after the current caret position consists only of whitespaces, double-pressing the enter key should break out of the list because spaces after the caret should not be considered content in the current list item.

Steps to reproduce:
1. Create a list
2. Type some text in the first line with a space after it
3. Move the cursor to the left before the space
4. Press enter twice
The current paragraph is still in a list.
Unplanned
Last Updated: 20 Oct 2017 06:30 by ADMIN
The crash is reproduced with a document with an image in the header and two columns in the body of the document.
Unplanned
Last Updated: 10 Oct 2017 13:46 by ADMIN
Making headers and footers read-only or invisible is possible, but there is no way to prevent focusing them.
Unplanned
Last Updated: 03 Oct 2017 13:19 by ADMIN
InvalidCastException that is handled is thrown in a scenario with two tables with no paragraphs in between, a page break before the tables and the user inserts paragraph in the second table. As a result, the user is unable to delete content when the selection includes the table ( the one produced by merging the two tables after the paragraph deletion).
Unplanned
Last Updated: 20 Sep 2017 08:33 by ADMIN
Add support for Eastern Arabic Numerals in list level bullet text: https://en.wikipedia.org/wiki/Eastern_Arabic_numerals
Unplanned
Last Updated: 14 Sep 2017 07:04 by ADMIN
There is a glitch in the font's combobox when importing html that contains table and there is an image in the cell. It shows wrong font family. Typing on the other hand works correctly and the appropriate font is used.
Unplanned
Last Updated: 01 Sep 2017 11:27 by ADMIN
Empty paragraphs are always exported with one empty span containing   When you apply styling like highlight color the span with   will be with background. Which is not the behavior in RTB.
Unplanned
Last Updated: 30 Aug 2017 15:32 by ADMIN
Setting IsLinkedToPrevious to false is not respected on export to DOCX/RTF for an empty header when the footer contains page field. The header is not exported at all.

Workaround: Add some content to the header (it might be a single space).

foreach (var section in this.radRichTextBox.Document.Sections)
{
    if (section.Headers.Default.IsEmpty)
    {
        RadDocumentEditor editor = new RadDocumentEditor(section.Headers.Default.Body);
        editor.Insert(" ");
    }
}
Completed
Last Updated: 25 Aug 2017 06:38 by ADMIN
Currently, the document won't be imported due to an exception when decoding the base64 string image source. The expected behavior is the document to be imported and the image to be shown as a missing image.

Available in LIB Version 2017.2.731.
Completed
Last Updated: 24 Aug 2017 10:55 by ADMIN
ChangeFontHighlightColorCommand, ChangeParagraphBackgroundColorCommand, ChangeFontForeColorCommand and ChangeUnderlineColorCommand does not apply the color when invoked with string containing the name of the color as parameter, e.g. 'red'.

Available in LIB Version 2017.2.828.
Completed
Last Updated: 24 Aug 2017 10:52 by ADMIN
There is no translation in the different languages.

Available in LIB Version 2017.2.828.
Declined
Last Updated: 17 Aug 2017 15:27 by ADMIN
Declined
Last Updated: 17 Aug 2017 14:29 by ADMIN
ADMIN
Created by: Tanya
Comments: 1
Category: RichTextBox
Type: Feature Request
0
When adding a comment it should be marked as created from the current user. Layer with tool tips should be added to show this information. Also comment balloons should contain it.
Unplanned
Last Updated: 16 Aug 2017 10:53 by ADMIN
When a paragraph is triple-clicked, then the whole paragraph is selected. However, when there is a table beneath the paragraph and triple-click action is performed for the paragraph (or a selection is created including the end of the paragraph), the table's first row is selected as well.