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);
        }

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: 04 May 2018 12:58 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PDFViewer
Type: Feature Request
2
This action is usually linked to a Button field and with it, the user of the application may revert all field values to their defaults. 
Unplanned
Last Updated: 13 Apr 2018 14:03 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Feature Request
4
Expose a button in the UI that can be used instead of Ctrl+F.

Such a button can be currently added by customizing the default toolbar. For more information, check the documentation that describes how to achieve that: https://docs.telerik.com/devtools/wpf/controls/radpdfviewer/default-ui#customizing-the-default-ui
Completed
Last Updated: 30 Mar 2018 14:56 by ADMIN
This is reproducible when the field VariableTextProperties has zero value for font size. 

Fix available in LIB Version 2018.1.402.
Completed
Last Updated: 30 Mar 2018 13:46 by ADMIN
An ArgumentException is thrown internally as the font name is null. However, the name is defined in the base font and can be obtained from it.

Fix available in LIB Version 2018.1.402.
Unplanned
Last Updated: 26 Mar 2018 10:37 by ADMIN
Currently, RadPdfViewer uses default constant value for the font size in this scenario.
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: 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: 25 Jan 2018 13:57 by ADMIN
ADMIN
Created by: Anna
Comments: 0
Category: PDFViewer
Type: Bug Report
2
When a PDF is printed all images are omitted.

Available in R1 2018 SP1 version.
Unplanned
Last Updated: 25 Jan 2018 11:46 by ADMIN
At the moment the theme of the RadPdfViewerToolBar can be set only by setting the theme of the entire application. The individual setting (using telerik:StyleManager.Theme="Windows8") should also be supported.
Unplanned
Last Updated: 02 Jan 2018 14:10 by ADMIN
Setting Handle property to false should result in rethrowing the exception and interrupting current RadFixedDocument rendering. This is related to Exception Handling Mechanism mentioned in this documentation article: 

https://docs.telerik.com/devtools/wpf/controls/radpdfviewer/document-model/exceptionhandling
Completed
Last Updated: 26 Dec 2017 12:18 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PDFViewer
Type: Bug Report
2
Loading page with a lot of text takes several minutes which is unacceptable. This performance issue is caused by class GlypInfoFactory, which caches the glyph information.

Available in LIB Version 2017.3.1225.
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.
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: 20 Nov 2017 13:49 by ADMIN
Decode array for image masks with DeviceGray color space is not respected, and always the default array of [0 1] is used for visualization. When the mask is encoded with [1 0], the mask is applied inversed, making the wrong pixels transparent. This may lead to images becoming invisible.

Fix available in LIB Version 2017.3.1120.
Completed
Last Updated: 20 Nov 2017 13:48 by ADMIN
This may result in inversed transparency issue when rendering images with ImageMask.

Fix available in LIB Version 2017.3.1120.
Completed
Last Updated: 20 Nov 2017 13:47 by ADMIN
Currently, the implementation relies on the fact that the previous cross-reference value of a stream object is always a stream object. Instead during the cross-reference recursion, we should check on each step whether the previous cross-reference item is table or stream.

Fix available in LIB Version 2017.3.1120.
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.
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.