Completed
Last Updated: 01 Dec 2020 12:59 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)

When we render any PDF file with 'x' number of page count and try to enter page 'x+1' in telerik:CurrentPageTextBox and hit enter, it will enable the Previous Page RadButton and if we click Previous Page then it will freeze the application.

System.ArgumentOutOfRangeException: 'pageNo should be greater or equal than 1 and less or equal than 4. (Parameter 'pageNo')'

Workaround: A possible approach could be to attach to the CurrentPageTextBox` KeyDown event in order to restrict the input.

XAML: 

<telerik:CurrentPageTextBox x:Name="PART_CurrentPageNumberTextBox" 
							KeyDown="PART_CurrentPageNumberTextBox_KeyDown"
							Text="{Binding FixedDocumentViewer.CurrentPageNumber, Mode=TwoWay}"/>
Code-behind:

private void PART_CurrentPageNumberTextBox_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
	TextBox textBox = sender as TextBox;
	if (textBox != null)
	{
		if (e.Key == System.Windows.Input.Key.Enter)
		{
			int pagesCount = this.pdfViewer.PagesCount;
			int currentPageNumber = this.pdfViewer.CurrentPageNumber;
			if (this.pdfViewer.Document != null && (currentPageNumber < 1 || currentPageNumber > pagesCount))
			{
				RadFixedPage currentPage = this.pdfViewer.CurrentPage;
				int pageNum = this.pdfViewer.Document.Pages.IndexOf(currentPage) + 1;
				this.pdfViewer.CurrentPageNumber = pageNum;
			}
		}
	}
}

Unplanned
Last Updated: 09 Sep 2020 12:09 by ADMIN

Hello,

We are using PdfViewer and its command descriptor.

Right now, I don't find how to set the name of the file being saved. In my humble opinion, the command parameter should be the fileName of the PDF being exported.

The documentation doesn't tell how to set the fileName which is a basic thing to do for a save file command.

I didn't find a solution in the forum. Weird nobody ever talked about it.

Thanks for evaluating this feedback

Unplanned
Last Updated: 25 Aug 2020 10:10 by ADMIN
This exception is observed only on a 32-bit platform (not on 64-bit).
Unplanned
Last Updated: 13 Aug 2020 16:59 by ADMIN
Importing a document, which contains pages with many geometries - such as paths, lines, and curves leads to degraded scrolling performance.
Unplanned
Last Updated: 08 Apr 2021 07:18 by ADMIN
A shape is draw incorrectly when showing a specific file
Completed
Last Updated: 03 Aug 2020 08:14 by ADMIN
Release LIB 2020.2.803 (03/08/2020)
Created by: Mark
Comments: 0
Category: PDFViewer
Type: Bug Report
0
After saving a document from PdfViewer, it cannot be opened by other applications as it is still locked.
In Development
Last Updated: 15 May 2024 06:28 by ADMIN
Scheduled for 2024.2.426 (2024 Q2)
The read-only flag is not respected when importing a document
Unplanned
Last Updated: 29 Jun 2020 14:27 by ADMIN
Using Adobe the edit mode is triggered on the first mouse click.
Unplanned
Last Updated: 17 Jun 2020 14:51 by ADMIN
Created by: Robert
Comments: 0
Category: PDFViewer
Type: Feature Request
2
Add support for Date picker form field type so the user can pick a date through a date time picker.
Completed
Last Updated: 18 Jun 2020 14:02 by ADMIN
Release R2 2020 SP1
When creating thumbnails from RadFixedPage with images, the page images are missing from the resultant thumbnail.
Completed
Last Updated: 22 Jun 2020 11:00 by ADMIN
Release R2 2020 SP1
When rendering a PDF document page in FixedDocumentSinglePagePresenter, blank pages are displayed, when the document contains images.
Completed
Last Updated: 18 Jun 2020 12:35 by ADMIN
Release R2 2020 SP1
CreateThumbnail of ThumbnailFactory leads to InvalidOperationException: 'The calling thread cannot access this object because a different thread owns it.', when called from separate STA thread.
Unplanned
Last Updated: 15 Jun 2020 09:43 by ADMIN
Created by: Luo
Comments: 0
Category: PDFViewer
Type: Feature Request
2
This is Unicode (UCS-2) encoding for the Adobe-GB1 character collection.

Described on page 443 in Pdf Reference 1.7.
Completed
Last Updated: 01 Jun 2020 12:36 by ADMIN
Release LIB 2020.2.608 (06/08/2020)
User is not able to type in the form fields on touch devices.
Completed
Last Updated: 11 May 2023 05:47 by ADMIN
Release R2 2023
When importing document with text containing char code mapped to .notdef glyph name an ArgumentException: 'The encoding is not supported.' is thrown.
Completed
Last Updated: 27 Jun 2023 11:55 by ADMIN
Release R2 2023 SP1
When saving Form Fields in document defined with linearized PDF structure, it produces a document that fails to open in Edge.

The current implementation of the RadPdfViewer Save uses the incremental update feature. However, the incremental update doesn't comply with the linearized structure and the document fails to open in some viewers.

Workaround: Import/export the document with PdfPRocessing to remove the linearization feature.
Completed
Last Updated: 26 Jun 2023 14:08 by ADMIN
Release R2 2023 SP1
The offset of the Page boundaries such as CropBox, MediaBox, BleedBox, and ArtBox is not respected and is always treated as 0 which causes misplaced Annotations.
Unplanned
Last Updated: 10 Apr 2020 14:08 by ADMIN
Visualizing a page with a huge number of images (40000) freezes the application.
When switching to the FixedDocumentSinglePageViewPresenter, all the page content should be loaded so it can be later rendered. Although the images are loaded asynchronously, there are too many threads started which seems to cause the hang. Also, according to profiling results, it seems like the image caching causes performance diminishments in such scenarios. 
In Development
Last Updated: 08 Apr 2024 07:09 by ADMIN
When the font is not embedded in the document, PdfViewer tries to read it from the OS. However, the Calibri-Font is not properly parsed and a NullReferenceException is thrown internally for its encoding. 
Completed
Last Updated: 24 Feb 2020 11:00 by ADMIN
Release LIB 2020.1.224 (02/24/2020)
When importing the document as DocumentSource the stream will be loaded asynchronously and the document won't be loaded when the Print() method is called, NullReferenceException is thrown.