The AltChunk element is responsible for embedding external content into documents. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190095 Please use the new item for commenting, voting and subscribing instead of this one.
Fixed in LIB Version 2015.3.1130. Note that the MinimizeButtonStyle used in the OutlookBar control is now renamed to OutlookBarMinimizeButtonStyle.
Will be available in Q1 2016 Release.
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.
'thead' HTML element represents table row that should be repeated at the top of each page. MS Word maps this to TableRow with RepeatOnEveryPage set to true. This works for both export and import. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190104 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/190107 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/190237 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/190003 Please use the new item for commenting, voting and subscribing instead of this one.
The documents produced by WordsProcessing and SpreadProcessing are compliant with the specification. But, Open Office, Numbers and Pages (the default applications for working with .docx and .xlsx on MAC) are unable to open documents where the target attribute of the relationships of the documents is specified as an URI, instead of as a relative reference. According to the specification (Ecma Office Open XML Part 2 - Open Packaging Conventions) both formats are acceptable. The issue is in the relationships parts, relationship element. The Target attribute can be either a URI (Target="/word/theme/theme1.xml") or a relative reference (Target="theme/theme1.xml") as stated in the specification. The document processing libraries use URI, which OpenOffice is unable to interpret, despite them being allowed by the specification. The fix will be available in our official release Q2 2016.
This is content stream operator that is used to close, fill and then stroke a PDF path geometry. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190111 Please use the new item for commenting, voting and subscribing instead of this one.
This is content stream operator used for setting color in Device, CIE-based or Indexed color space. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190112 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.
i would like to change background color when click in (Day,Month,Week,Timeline).
The themes are great. But it's difficult to create a new one from scratch. It'd be great if there was a Theme Creator/Editor that allowed a designer to start from scratch, or create a new theme based on an existing one. The UI would allow the designer to preview the new theme in real time against live theme-supporting Telerik controls and see the results.
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.
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.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190118 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 set MinLines and MaxLines to a TextBox styled with and theme different from Expression Dark, entering text in the TextBox results in an unexpected behavior of the TextBox Height. Fix available in LIB Version 2016.2.627.