Completed
Last Updated: 21 Jan 2021 09:25 by ADMIN
Release R1 2021
In specific occasions, when starting multiple background threads to import documents, an InvalidOperationException might be thrown saying "Operations that change non-concurrent collections must have exclusive access. A concurrent update was performed on this collection and corrupted its state. The collection's state is no longer correct." This issue is pretty hard to reproduce. 
Unplanned
Last Updated: 05 Nov 2020 12:18 by ADMIN
Expose event that allow on to track if the rotation is changed
Completed
Last Updated: 02 Nov 2020 12:00 by ADMIN
Release LIB 2020.3.1102 (02/11/2020)
When importing a document containing an image with ICC Based colorspace and the Alternate colorspace property is null, a NullReferenceException is thrown, which leads to a missing image in RadPdfViewer.
Unplanned
Last Updated: 29 Oct 2020 09:22 by ADMIN
PdfViewer: Show the DropDownList icon when the document contains ComboBox field
Completed
Last Updated: 26 Oct 2020 07:14 by ADMIN
Release LIB 2020.3.1026 (26/10/2020)
Instances of RadFixedDocument and PdfFormatProvider are kept in memory by a WPF internal collection (_sizeChangedChain).
Completed
Last Updated: 17 May 2023 06:31 by ADMIN
Release R2 2023
Unplanned
Last Updated: 12 Oct 2020 06:56 by ADMIN
Created by: D.Scaccabarozzzi
Comments: 0
Category: PDFViewer
Type: Feature Request
3
From the PDF specification: PDF 1.6 introduces the capability for collections of three-dimensional objects, such as those used by CAD software, to be embedded in PDF files. Such collections are often called 3D models; in the context of PDF, they are referred to as 3D artwork.
Completed
Last Updated: 09 Oct 2020 13:18 by ADMIN
Release LIB 2020.3.1012 (12/10/2020)

When importing a PDF document, opening the stream in using statement, and using the default constructor of the PdfDocumentSource class, an exception is thrown:

using (Stream stream = ofd.OpenFile())
{
	this.pdfViewer.DocumentSource = new PdfDocumentSource(stream);
}
Workaround: provide an implementation of PdfImportSettings with CopyStream set to true:
using (Stream stream = ofd.OpenFile())
{
	PdfImportSettings importSettings = new PdfImportSettings
	{
		CopyStream = true
	};

	this.pdfViewer.DocumentSource = new PdfDocumentSource(stream, importSettings);
}

Completed
Last Updated: 29 Sep 2020 12:45 by ADMIN
Release LIB 2020.3.1005 (05/10/2020)
When importing a document containing an ICCBased color space an exception is thrown.
Completed
Last Updated: 29 Sep 2020 13:15 by ADMIN
Release LIB 2020.3.1005 (05/10/2020)
Exception when importing text fragments with no text 
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.
Completed
Last Updated: 17 Sep 2024 13:07 by ADMIN
Release 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.