Unplanned
Last Updated: 04 Sep 2017 15:50 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: PDFViewer
Type: Feature Request
1
Introduce support for PolyLine Annotation
Unplanned
Last Updated: 17 Oct 2017 11:50 by ADMIN
FixedDocumentSinglePagePresenter uses simple rendering mechanism using UIElements, which currently has some limitations:
- Layers are not supported, thus annotations and forms are not rendered (even read-only)
- UIElements could be affected (clipped) when UseLayoutRounding property set at parent level, when DPI is different that 96 DPI. 

Workaround: If content is clipped, ensure that UseLayoutRounding is set to false as presenter level:
<telerikUI:FixedDocumentSinglePagePresenter UseLayoutRounding="False" />
Completed
Last Updated: 26 Jun 2023 14:03 by ADMIN
Release R2 2023 SP1
When a page is rotated its annotations are not positioned correctly. 
Unplanned
Last Updated: 26 Oct 2017 13:59 by ADMIN
Currently, the Find() method searches from the beginning of the document to its end. Enable the customer to specify a particular range of pages the method should search through.
Unplanned
Last Updated: 09 Nov 2017 14:31 by ADMIN
Before starting to decode big image, try to estimate the needed memory and check if such memory is available using the MemoryFailPoint class. The behavior in case of failure in printing scenarios should be considered carefully.
The user should be able to turn the behavior on and off.
Completed
Last Updated: 27 Nov 2017 08:58 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PDFViewer
Type: Bug Report
1
The Ò symbol is not found in the encoding as is rendered as a ".notdef" glyph.

Available in LIB Version 2017.3.1127.
Completed
Last Updated: 21 Dec 2017 09:28 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Feature Request
1
Enable the customers to directly save the document inside PdfViewer to a file or a stream.

Available in LIB Version 2017.3.1225.
Declined
Last Updated: 11 Feb 2019 12:42 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Bug Report
1
Images decoded with CCITTFaxDecode filter affect the performance when showing the document.

This item is closed as a duplicate. Please, vote and follow the item at https://feedback.telerik.com/wpf/1353994-pdfviewer-slow-performance-of-ccittfaxdecode-filter.
Completed
Last Updated: 08 Mar 2018 11:49 by ADMIN
The exception is thrown when the RadioButtonField options array contains nested arrays instead of string values.

Fix available in LIB Version 2018.1.312.
Completed
Last Updated: 19 Mar 2018 11:16 by ADMIN
The file contains the following:
68.637 604.561 455.981 -107.996 re
72.237 604.561 l
S
Instead of the more usual
68.637 604.561 455.981 -107.996 re
S
72.237 604.561 l
S
Both are valid but the first seems to create a problem.

Fix available in LIB Version 2018.1.319.
Completed
Last Updated: 19 Jun 2018 13:50 by ADMIN
RadPdfViewer's AcroForm property ViewersShouldRecalculateWidgetAppearances should be respected when being set to true. In this case, RadPdfViewer should recalculate all widget appearances and this would resolve the issue with empty form field widgets after opening such PDF document.
Unplanned
Last Updated: 10 May 2018 08:08 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PDFViewer
Type: Feature Request
1
Currently, we use System.Windows.Controls.TextBox for editing both TextBox and CombTextBox field types. We should implement CombTextBox editor which would allow having spaces between characters during the editing process.
Unplanned
Last Updated: 14 May 2018 17:07 by Georgi

This is reproducible when the matched result resides on different page. Workaround: You may subscribe to the RadFixedDocument.CaretPosition.PositionChanged event and implement the scroll logic. Subscribe to PdfViewer's DocumentChanged event first if the document is not loaded.

        private void CaretPosition_PositionChanged(object sender, EventArgs e)
        {
            Telerik.Windows.Documents.Fixed.Model.RadFixedPage currentPage = this.pdfViewer.Document.CaretPosition.Page;
            int pageIndex = this.pdfViewer.Document.Pages.IndexOf(currentPage);
            this.pdfViewer.GoToPage(pageIndex + 1);
        }

Completed
Last Updated: 14 Jun 2018 13:44 by ADMIN
Usually, the entries are on neighboring rows. However, some producers introduce some extra blank rows between entries and this causes exception in RadPdfViewer implementation.

Fix available in R2 2018 SP1 release version.
Completed
Last Updated: 27 Jun 2023 10:20 by ADMIN
Release R2 2023 SP1
When importing document containing a destination which points to invalid page reference, KeyNotFoundException is thrown.
Completed
Last Updated: 01 Aug 2018 14:12 by ADMIN
When importing documents containing Interactive FormFields with an empty collection of Normal state appearances, a NullReferenceException is thrown, which leads to non-editable FormFields in PdfViewer.

Fix available in LIB Version 2018.2.730.
Completed
Last Updated: 01 Aug 2018 12:35 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PDFViewer
Type: Bug Report
1
Instead, we should not visualize them and they should not be interactable with the mouse.

Fix available in LIB Version 2018.2.730.
Unplanned
Last Updated: 03 Sep 2018 09:52 by ADMIN
ADMIN
Created by: Anna
Comments: 0
Category: PDFViewer
Type: Feature Request
1
At the moment the AnnotationsHandler, SelectionHandler and PanHandler cannot be removed or disabled. It would be convenient for this to be possible.
Unplanned
Last Updated: 07 Sep 2018 15:34 by ADMIN
The rendering of images with size ~5000/6000 and BitsPerComponent=1 is time-consuming. The scenario is optimized in terms of memory but would be nice to increase the performance as well.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
When a ToUnicode CMap is defined for Simple Font (TrueType or Type1 font) which maps font character codes to two or more Unicode character values, the extracted text should contain the whole set of characters defined in the mappings. The current implementation of RadPdfViewer takes the first character specified in the ToUnicode mapping which leads to missing characters.