This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190092 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190091 Please use the new item for commenting, voting and subscribing instead of this one.
Styled text in a list item <li> is imported as a different paragraph. The result is split of the text into multiple paragraphs which are not in a list. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190120 Please use the new item for commenting, voting and subscribing instead of this one.
When importing from HTML, all successive spaces in a span should be trimmed to 1. However, there are cases when these are trimmed to 0 causing wrong result. Sample: <p><a href="www.telerik.com" target="_blank"><span>test</span></a> and more.</p> This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190037 Please use the new item for commenting, voting and subscribing instead of this one.
When a chart is inserted in a document, generated by Spreadprocessing, the chart seems to lack any bars. The reason behind this is that the bars are actually shapes and the shapes in the DPL documents are by default transparent, instead of blue. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190056 Please use the new item for commenting, voting and subscribing instead of this one.
Incorrect handling of \defchp group. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190027 Please use the new item for commenting, voting and subscribing instead of this one.
Accessing one of the entries in the archive throws a generic "Invalid data" exception. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190159 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190113 Please use the new item for commenting, voting and subscribing instead of this one.
ParagraphMarkerProperties of a Paragraph element are not cloned and this leads to incorrect list numbering (bullets) rendering after export since the numbering styles (bullets, numbers and etc.) copy the style properties from there. This affects Clone() method of the Paragraph and ergo RadFlowDocumentEditor.InsertDocument() method and DocumentElementImporter.Import() methods since they're using Clone() method internally. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190115 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190060 Please use the new item for commenting, voting and subscribing instead of this one.
When a source RadFixedDocument is merged to a target RadFixedDocument, the content of the source document is cleared. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190079 Please use the new item for commenting, voting and subscribing instead of this one.
If the value from the source contains new lines, they should be inserted in the resulting documents as new paragraphs. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190097 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190093 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190103 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190089 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190040 Please use the new item for commenting, voting and subscribing instead of this one.
The font size in the table does not respect the CSS for the corresponding class. There is similar issue with <li /> element. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190102 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190082 Please use the new item for commenting, voting and subscribing instead of this one.
When the last element from a table cell is an empty line, the latter is skipped and not imported. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190105 Please use the new item for commenting, voting and subscribing instead of this one.
The document default style properties are not cloned on document.Clone(). There is a workaround by using the following code: var cloning = this.document.Clone(); ClearPropertiesWithoutValueAndSetLocalValues(this.document.DefaultStyle.CharacterProperties, cloning.DefaultStyle.CharacterProperties); ClearPropertiesWithoutValueAndSetLocalValues(this.document.DefaultStyle.ParagraphProperties, cloning.DefaultStyle.ParagraphProperties); private void ClearPropertiesWithoutValueAndSetLocalValues(DocumentElementPropertiesBase propertiesFrom, DocumentElementPropertiesBase propertiesTo) { foreach (var stylePropertyFrom in propertiesFrom.StyleProperties) { var stylePropertyTo = propertiesTo.GetStyleProperty(stylePropertyFrom.PropertyDefinition); stylePropertyTo.ClearValue(); if (stylePropertyFrom.HasLocalValue) { object value = stylePropertyTo.GetLocalValueAsObject(); stylePropertyTo.SetValueAsObject(value); } } } This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190117 Please use the new item for commenting, voting and subscribing instead of this one.