Deleting a row in the attached table causes a crash during document layout.
Docx format can encode symbol characters using the <sym> element. Currently this concept is not supported in the document model, and the element is converted to normal character on import. Add support for similar element in the document model, and for its export to Docx.
Expose TableOfContentsField.TabStopLeader property which will allow changing the leaders of the tab stops used within the field result. Currently such property exists, but it's internal.
The fix is available in Q3 2014 SP1.
Comments are getting collapsed and clipped when there is not enough vertical space to display all of them.
When document with field in header/footer is imported from RTF, and subsequently exported to RTF from web layout mode, the formatting of the field is lost.
The issue is sporadic. Updating the UI resolves it. Workaround: manually call this.radRichTextBox.ActiveEditorPresenter.RecreateUI(); just after the acception.
Tab leader (dots) are calculated based on the available space between the end of the text in the entry and the page number. Workaround: to change rendering mode to TextBlockWithPropertyCaching: this.radRichTextBox.TextRenderingMode = TextBlockRenderingMode.TextBlockWithPropertyCaching;
Add support for the following RTF tags (crop from top, bottom, left, right): \picropt, \piccropb, \piccropl, \piccropr
The fix will be available in our official release Q1 2015.
The fix will be available in our official release Q1 2015.
The fix is available in our LIB release (v. 2014.3.1208)
When an action is executed, say delete, and you perform undo, the text that is inserted back in the control is selected. In RadRichTextBox the end position of the selection is brought into view.
Add support for Widow/Orphan control property of Paragraph. In Open XML specification, this is named "widowControl (Allow First/Last Line to Display on a Separate Page)". The problem is that as this property is not supported, RadRichTextBox acts as it's 'false' and also doesn't export it, but the default value is actually 'true', which causes layout differences between RadRichTextBox and MS Word.
When floating images are placed in a header or footer, and are positioned outside of the text editor's area, they are not visualized. MS Word visualizes such images as slightly grayed out (similar to watermarks) in normal mode, and always visualizes them in Header/Footer edit mode. This item is merged with another one concerning the same issue. Please, follow the item at https://feedback.telerik.com/Project/143/Feedback/Details/174624 .
Import of HTML containing an element with defined list-style-type styling, which is not a list, will result in loss of the information in the element. Here is example: <div style="LIST-STYLE-TYPE: decimal;"> <p><span>Hello world</span></p> </div>
In specific cases when deleting a row, which contains merged cells, one of the cells is going in wrong position.
When TrackChanges is disabled and a text is changed, the Copy command should copy the content as all changes are accepted. So, for example, deleted text is not copied.