Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190087 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by Vladimir Skvortsov
ADMIN
Created by: Tanya
Comments: 1
Category: UI for WPF
Type: Feature Request
1
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190114 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: UI for WPF
Type: Feature Request
0
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190048 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: UI for WPF
Type: Feature Request
3
Implement functionality allowing to specify that when a table is split on multiple pages, a specific row should be shown on each page.

Workaround: in the attached demo projects.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190085 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
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.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
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.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190047 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
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.
Declined
Last Updated: 22 Feb 2017 12:33 by Christoph
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190057 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by Jon
ADMIN
Created by: Kammen
Comments: 2
Category: UI for WPF
Type: Feature Request
7
Support for forms. The feature is named 'Interactive forms' in the PDF specification.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190018 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Boby
Comments: 0
Category: UI for WPF
Type: Feature Request
0
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190026 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
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.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Petya
Comments: 0
Category: UI for WPF
Type: Feature Request
1
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190067 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by Mi
Created by: Mi
Comments: 0
Category: UI for WPF
Type: Feature Request
3
As one can use annotations you should support attachments per page or per pdf-file.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190006 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190021 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
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.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: UI for WPF
Type: Feature Request
3
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190090 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
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.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: UI for WPF
Type: Bug Report
0
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.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
When using ZipArchive in Update mode do not load entire Zip archive in the memory.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190133 
Please use the new item for commenting, voting and subscribing instead of this one.