Unplanned
Last Updated: 07 Aug 2018 13:03 by Kyle
ADMIN
Created by: Tanya
Comments: 3
Category: PDFViewer
Type: Feature Request
4
At this point, the Print() method allowing the customers to silently print a document uses the PrintableAreaWidth and PrintableAreaHeight properties of the print dialog, which are read-only and cannot be changed through the API. Consider changing them with PrintTicket.PageMediaSize.

We should also consider the scenario when the client needs to print a smaller PDF page on a bigger page size. For instance, A5 page to be printed on an A4 sheet without scaling the content.
Completed
Last Updated: 18 May 2023 06:50 by ADMIN
Release R2 2023
This is reproducible for images with FlateDecode and predictor value in the range between 10 and 15. As an example you may take a look at the DecodeParms property in the following image PDF dictionary:

<< /BitsPerComponent 8 /ColorSpace /DeviceRGB /DecodeParms << /BitsPerComponent 8 /Colors 3 /Columns 1024 /Predictor 15 >> /Filter /FlateDecode /Height 2868 /Subtype /Image /Type /XObject /Width 1024 /Length 1236707 >>
Completed
Last Updated: 14 Jun 2021 11:47 by ADMIN
Release R2 2021 SP1
The current implementation relies on valid cross-reference table offsets in the PDF documents so that PDF objects are easily found and parsed. However, a mechanism for importing documents with invalid cross-reference table offsets may be implemented.

The attached project shows how to repair such documents.
Completed
Last Updated: 17 May 2023 06:31 by ADMIN
Release R2 2023
Unplanned
Last Updated: 23 Jun 2022 08:13 by ADMIN
Handle the cases when the page is rendered slowly and the document appears empty
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
When specific culture is set (e.g. Hebrew but not only) in a project targeting .NET 5 (or later), some documents are not rendered correctly (rendered as blank pages).
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
Some of the lines that should be dashed are rendered as continuous lines.
Completed
Last Updated: 16 Oct 2015 07:35 by ADMIN
Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
Currently, when printing landscape pages the content is rotated clockwise. There has to be an option to set it to anti-clockwise.
Unplanned
Last Updated: 24 Jul 2024 12:51 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 2
Category: PDFViewer
Type: Feature Request
3
The default WPF PrintDialog cannot print asynchronously when it is shown in UI. However, you may see the demo in this forum post showing how to create custom PrintDialog and perform async printing with it:
http://www.telerik.com/forums/pdfviewer-print-makes-ui-unresponsive#js0YdzFWc0Oa8C3g6a18lg
Completed
Last Updated: 07 Mar 2016 11:36 by ADMIN
Completed
Last Updated: 31 Oct 2018 07:53 by ADMIN
ADMIN
Created by: Mihail
Comments: 2
Category: PDFViewer
Type: Feature Request
3
There is opportunity to further optimize the caching mechanism of the image sources, which will reduce the memory consumption. The fast scrolling in a document containing big images could lead to an OutOfMemoryException.

Available in R1 2017 Official Release Version.
Completed
Last Updated: 26 Mar 2021 11:55 by ADMIN
Release R2 2021
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Feature Request
3
Add support for Lab color space. Currently alternate color is used to render the pixels, which may result in incorrect colors.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
The slow performance when creating thumbnail is only reproducible with specific documents.
Completed
Last Updated: 27 May 2021 10:11 by ADMIN
Release LIB 2021.2.531 (31/05/2021)
When there is no ToUnicode CMap, the text from the Simple Font instance should be extracted by mapping the glyph name to its corresponding charcode according to Adobe Glyph List. Additionally, the Differences array should be included in these calculations when there is custom encoding. The current implementation of RadPdfViewer makes ToString to the original char id byte value which leads to wrong characters. 
Unplanned
Last Updated: 10 Feb 2017 14:25 by ADMIN
The document will be imported with a loss of content. The reason is that ASCII85Decoder will throw an ArgumentException when the stream doesn't end with '~>'. 

Although this is invalid case according to PDF specification, other applications are handling it and the document is successfully visualized in them. We may also consider implementing workaround that handles such invalid streams.
Unplanned
Last Updated: 09 Oct 2024 08:51 by ADMIN
As a result, the glyphs are not measured and positioned properly. The issue applies to the TrueType and Type1 fonts.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
This exception seems to be related to AES algorithm PaddingMode property. 
Completed
Last Updated: 03 May 2019 10:01 by ADMIN
This happens only in scenarios when the widget has On state appearance defined and Off state appearance missing. If both appearances are missing then RadPdfViewer recalculates the appearances and the checkbox is successfully selected and deselected.
Completed
Last Updated: 27 Nov 2020 13:55 by ADMIN
Release LIB 2020.3.1130 (30/11/2020)
When modifying Interactive Forms TextBoxField's value the entered changes are preserved after is clicked out of the TextBoxField's editing area. However the changes are not applied when the click is performed on the save button.

As possible workaround you can raise a MouseLeftButtonDown event on the RadPdfViewer and after this execute the SaveAsCommand. For example:

private void SaveButton_Click(object sender, RoutedEventArgs e)
{
    MouseButtonEventArgs mouseEventArgs = new MouseButtonEventArgs(Mouse.PrimaryDevice, 0, MouseButton.Left)
    {
        RoutedEvent = FrameworkElement.MouseLeftButtonDownEvent
    };
 
    ((FrameworkElement)this.pdfViewer.FixedDocumentPresenter).RaiseEvent(mouseEventArgs);
    this.pdfViewer.CommandDescriptors.SaveAsCommandDescriptor.Command.Execute(null);
}