Currently, caret continues to blink even when typing or navigation is in progress (e.g. arrow key is pressed and held), which is inconvenient for the end users. Instead, the caret should stop blinking during these operations, similarly to industry standard apps like MS Word and OpenOffice.
Page field in header (or footer) of document created with mail merge is always evaluated to 1, instead of the number of the current page. Possible workaround (attached): - Do mail merges one by one - Set header/footers anew to contain PAGE fields in each document - Set FirstPageNumber = 1 to each first section in each document - Merge with RadDocumentMerger
When a preceding paragraph's size is increased, for example - font size is changed, or paragraph is split to two, then the selection of the consequent paragraphs is wrong. When the cursor is on the second line and attempt to select some part of it with the mouse is made, the first or the third line is selected. Steps to reproduce: 1. Create two paragraphs with multiple lines 2. Insert new paragraph after the first paragraph 3. Try to select second line of the third paragraph with the mouse Observed result: First line is selected instead of second line being selected
Improve measure and arrange of a document and its child document elements respectively - Span, Paragraph, Table, Section and etc. This will also improve the import time for large documents.
Characters like 🙋🏻 are not imported correctly and instead result in a series of question marks. Fix available in LIB Version 2018.2.716.
Copy/Paste Adobe Reader snapshots are displayed as blank images.
RadDocument instance leaks through StylesGallery when RadDocument is set multiple times in a sequence to RadRichTextBox - for example by setting RadRichTextBox.Document property multiple times. Steps to reproduce: - Start application containing RadRichTextBox with StylesGallery - Execute this code on a button click: this.radRichTextBox.Document = new RadDocument(); this.radRichTextBox.Document = new RadDocument(); Observed: RadDocument leaks through the styles gallery. Available in LIB version: 2017.1.227
Nested tables inherit alignment from its parent table or table cell when importing a document from HTML, but they shouldn't. The paragraphs are also aligned incorrectly when their parent table has its align attribute set.
The tab stop defining respective page number alignment correlates to the cell's width where the table of contents entry is positioned.
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(); }
RadDocument instances leak when editing a document containing a field and header/footer. The StyleRepository holds a reference to a style's document element. Fix available in LIB Version 2017.3.1002.
The pgMar element might be present but the margin information might be missing as shown below: <w:pgMar w:header="720" w:footer="720" /> At the moment this overwrites the section margin information with 0. Instead the margins should remain as is. Fix available in LIB Version 2018.2.820.
RadDocument.StreamFromUriResolving is not raised for the main document when InsertPictureField is included in header or footer.