The icon of "Font Color" button is wrong in Selection Mini Toolbar. It is the same as the icon of "Text Highlight Color" button. The button itself works properly - changes the color of the font of the selected text.
Mail merge field is inserted with incorrectly placed and inverted first bracket '{' when the paragraph is RTL. Workaround: Update the field and then toggle it back to code display mode. Steps to reproduce: - Write something in RTL paragraph. - Insert mail merge field. Expected: The field is inserted with its normal form: { MERGEFIELD PropertyName } Actual: The brackets of the field are incorrectly placed: } <some-RTL-text> MERGEFIELD PropertyName }
When doing word-by-word spell checking, the spell checking dialog sometimes covers the misspelled word, so the user cannot see the context of the word without manually moving the dialog. It would be nice if there was a way to change the position of the dialog while spell checking so that it doesn't cover the context of the word.
When a hyperlink is inserted near to a full stop, the spans are reordered. Steps to reproduce: 1. Write some Arabic text containing full stop. 2. Select the text after the full stop and insert a hyperlink Expected: The letters and words preserve their order. Actual: The letters and/or words are reordered.
The method CopyContentFromOverride is a protected method used for copying of inline specific content. This method is not called each time from the CreateElementCopy method. As a workaround of copying your properties ovveride the CopyPropertiesFromOverride method.
When HTML document which contains brackets and is set to RTL is imported, the closing brackets are converted to opening. Workaround: Set RadRichTextBox's TextRenderingMode="TextBlockWithPropertyCaching"
Spaces in the text are disappearing when several tabs key are added (using the Tab key). In some cases, parts of words are missing (off the visible page) or are reordered. Steps to reproduce: 1. Write some words in a line inside a paragraph, set with justified alignment. 2. Press Tab few times, until the caret goes to the next line Result: The spaces are not visible, some parts at the end of the text disappear. Sometimes the words are reordered.
When large image is set as watermark and the document is exported to PDF, the image is with significantly worse quality.
When the paragraph starts with Annotation with SkipPositionBefore = true, TabForward command does not detect that the caret is actually at the beginning of paragraph, and inserts Tab character instead of changing left indent. Workaround: Subscribe to CommandExecuting and cancel the InsertTextCommand with parameter "\t" if the caret is at such position Steps to reproduce: - Insert a paragraph in the document. - Put the caret at the beginning of the paragraph and insert bookmark (without selection). - Put the caret at the beginning of the paragraph and press tab. Expected: Paragraph's Left indent is changed. Observed: Tab character is inserted.
Add Paragraph property controlling whether SpacingBefore / SpacingAfter is applied between paragraphs with the same style. In MS Word, the corresponding option is controlled with "Don't add space between paragraphs of the same style" checkbox in the font properties dialog - and the paragraph spacing after will not be applied. In OOXML, it is described with the w:contextualSpacing element. We don't respect this property on import of such files, and the paragraph spacing is bigger. Common use case for this feature is that when list is applied to multiple paragraphs, Paragraph List style is applied to the items, and this style has "Don't add space between paragraphs of the same style" applied, so the vertical spacing between the items is smaller.
Currently Find dialog searches only in the editor from which it's started, e.g. if the user presses Ctrl+F in a comment, only the text of this comment is searched.
A table in the body is wider than a table in the header when the document is printed. Steps to reproduce: - Insert a tables in the header and the body. - Print the document Expected: The table in the body has the same width. Actual: The table in the body is wider that the table in the header
Add full support for spell checking of comments. Currently the words are not underlined, and the user cannot show the suggestions in the context menu; but it can trigger the spell checking dialog from the UI command. Check if this is possible for other child editors like footnotes/endnotes.
In MS Word the users have the ability to embed different objects and files in the document, using the Insert tab -> Text section -> Object. Implement similar behavior in RadRichTextBox, allowing to embed objects as inlines, to edit them, and to re-embed them after editing.
When a symbol is inserted, the font family of RichTextBox is set to the symbol's font family. Workaround: Create a custom InsertSymbolDialog. The font family could be persisted in the Show() method of the new dialog and reset when the dialog is closing. Attached is a sample project demonstrating the workaround.
When a paragraph between two tables with different columns count is deleted and then the two tables are copy-pasted, the layout of the second table gets broken.
If a table style is applied to a table, and then document is exported/imported to RTF, properties of the style are applied as local properties. Subsequent edits of the style (or changing the style of the table) seems to not work, as the local properties are with higher priority.
When using the "Replace" function or the API, the formatting of the replaced word is lost. Note: Using "Replace All" does not reset the formatting. Steps to reproduce: 1. Enter the text "The quick brown fox" in a document 2. Apply formatting to the word "brown" (eg, make it bold) 3. Perform a find/replace on the word brown (eg, replace with blue) using "replace", not "replace all" 4. The formatting of the word is reset (it's no longer bold)