Unplanned
Last Updated: 28 Jan 2021 11:40 by ADMIN
Created by: Dimitar
Comments: 0
Category: PdfViewer
Type: Feature Request
0
Add support for Trigger Events
Completed
Last Updated: 11 Jan 2021 13:19 by ADMIN
Release R1 2021
Created by: Daniel
Comments: 1
Category: PdfViewer
Type: Feature Request
0
Is there a way to customize the box to request a signature?

 

 

Thanks in advance
Completed
Last Updated: 11 Jan 2021 09:36 by ADMIN
Release R1 2021
ADMIN
Created by: Peter
Comments: 4
Category: PdfViewer
Type: Feature Request
23
A dictionary specifying any resources (such as fonts and images) required by the form XObject (see Section 3.7 from http://partners.adobe.com/public/developer/en/pdf/PDFReference.pdf
Unplanned
Last Updated: 29 Oct 2020 08:09 by ADMIN
Show the DropDownList icon when the document contains ComboBox field. This is the default behavior in adobe as well. 
Completed
Last Updated: 13 Oct 2020 09:16 by ADMIN
Release R3 2020
The CID font may define a description of the glyph widths. By specification, the widths can be defined in two ways - with start and end CID codes or with and an array of CID codes. However, the current implementation supports only CID arrays as direct property and not as an indirect object. This leads to incorrectly imported glyph widths and text positioning issues.
Completed
Last Updated: 21 Aug 2020 08:17 by ADMIN
Release R3 2020 (LIB 2020.2.825)
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
3

			
Unplanned
Last Updated: 20 Apr 2020 10:10 by ADMIN
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: 17 Feb 2020 09:21 by ADMIN
Release R1 2020 SP1

I am using RadPDFViewer, i built a specific toolbar for manage the funcionalities of the viewer.

I didn´t found the any event when the current page is changed in viewer. I would like to show a label "Page NN of TT".

 I found this "https://www.telerik.com/forums/page-changed-detected", but didn´t have this event in RadPDFViewer.

 

Whats the better solution for the raise event when the current page displayed is changed? 

 

Can you help me ?!? 

Unplanned
Last Updated: 22 Nov 2019 13:15 by ADMIN
When saving Form Fields in document defined with linearized PDF structure, it produces a document that fails to open in Edge.
Declined
Last Updated: 21 Nov 2019 07:28 by ADMIN
Created by: Jorge
Comments: 1
Category: PdfViewer
Type: Feature Request
1
Implement the import of documents containing Type 3 fonts.
Declined
Last Updated: 14 Nov 2019 16:26 by ADMIN
Created by: Jorge
Comments: 1
Category: PdfViewer
Type: Bug Report
0

Hi

I'm using PDFViewer to display several documents in my application. Most of them are shown the right way, but there are others that appear "empty", or with some graphic elements but no text. I can see them perfectly with external third party viewers.

I've just downloaded and installed 2019.3.1022, but this issue remains.

I send some samples of PDF that are not showing.

Thank you in advance for your help.

Unplanned
Last Updated: 05 Nov 2019 15:31 by MORDECHAI
Created by: MORDECHAI
Comments: 2
Category: PdfViewer
Type: Feature Request
1
I would like to be able to set a list of page numbers that will be skipped/not loaded by the PDFViewer.
Declined
Last Updated: 18 Oct 2019 12:41 by ADMIN

To reproduce:

  doc.Pages[0].CropBox = new Rect(150, 150, doc.Pages[0].Size.Width - 30, doc.Pages[0].Size.Height - 30);

Unplanned
Last Updated: 09 Aug 2019 05:08 by ADMIN
RadPdfViewer partially supports CCITTFaxDecode (that is basically TIFF). There are some limitations that are not supported at this stage like EncodedByteAlign = true or Group 3, 2-D encoding.
Unplanned
Last Updated: 30 Jul 2019 08:56 by ADMIN
When a pdf/a compliant document is opened in Adobe, there is a bar saying that the document is compliant with the standard. Expose such functionality in PdfViewer as well.
Unplanned
Last Updated: 29 Jul 2019 10:26 by ADMIN

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.

Unplanned
Last Updated: 24 Jul 2019 14:40 by ADMIN
When importing a document with empty pages collection an ArgumentNullException: 'Value cannot be null.
Parameter name: page', is thrown, which leads to application crash.
Unplanned
Last Updated: 10 Jul 2019 11:58 by ADMIN
I am using the PDFViewer control in a VisualStudio VB.NET application. The PDF is not showing all the details as it appears in Adobe PDF Reader. In particular, the text is not showing up (but is highlighted when selected) and there is gray shading that is not visible. See attached sample file. Please advise.
Completed
Last Updated: 23 May 2019 13:19 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)
Please refer to the attached gif file and sample project. When you hide the overflow button with the first pixel, although it is indicated as Visible, it is actually not shown.

Workaround: Timer timer = new Timer();

private void commandBarStrip_ItemOverflowed(object sender, EventArgs e)
{
    timer.Interval = 100;
    timer.Tick += timer_Tick;
    timer.Start();

}

private void timer_Tick(object sender, EventArgs e)
{
    timer.Tick -= timer_Tick;
    var commandBarStrip = this.radPdfViewerNavigator1.CommandBarElement.Rows[0].Strips[0];
    commandBarStrip.OverflowButton.Visibility = ElementVisibility.Visible;
    timer.Stop();
}
Unplanned
Last Updated: 16 May 2019 06:18 by ADMIN
When the Interactive Form Fields are in read-only mode, the user should not be able to change the value of the field. The associated Form Field widgets should not interact with the user, e.g. they should not respond to mouse clicks or change their appearance in response to mouse motions.