Completed
Last Updated: 13 May 2019 21:18 by Kevin
Release R2 2019 (LIB 2019.1.415)
Benjamin
Created on: 02 Apr 2019 12:45
Category: UI for WinForms
Type: Bug Report
2
RadPdfViewer: The bookmarks do not work

Use attached to reproduce.

Workaround:

public RadForm1()
{
    InitializeComponent();
    radPdfViewer1.ContainerElement.BookmarksTree.SelectedNodeChanged += BookmarksTree_SelectedNodeChanged;
}

private void BookmarksTree_SelectedNodeChanged(object sender, Telerik.WinControls.UI.RadTreeViewEventArgs e)
{
    Telerik.Windows.Documents.Fixed.Model.Navigation.BookmarkItem bookmark = e.Node.Tag as Telerik.Windows.Documents.Fixed.Model.Navigation.BookmarkItem;

    if (bookmark != null && bookmark.Destination == null)
    {
        GoToAction goToAction = bookmark.Action as GoToAction;
        if (goToAction != null && goToAction.Destination != null)
        {
            radPdfViewer1.PdfViewerElement.GoToDestination(goToAction.Destination);
        }
    }
}

Attached Files:
6 comments
Kevin
Posted on: 13 May 2019 21:18

Thanks Dimitar, I'll post the question on the WPF side and include any supporting docs.

Sincerely

Kevin

ADMIN
Dimitar
Posted on: 02 May 2019 06:56
Hi Kevin,

This portal is dedicated to issues related to the WinForms suite. This issue was observed only in WinForms suite as well. This is why I want to kindly ask you to open a new thread for this in the WPF portal. If possible attach your document so we can test with it as well. 

Thank you for your understanding.  

Regards,
Dimitar
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Kevin
Posted on: 01 May 2019 15:48

I am also attempting to use RadPDFViewer with WPF and having difficulty with the bookmarks

-has this issue been resolved

Please assist

 

Thanks

 

Sincerely

Kevin

Dimitar
Posted on: 09 Apr 2019 14:47
Hello, 
 
A Fix will be available in LIB Version 2019.1.415 scheduled for April 15th.

Regards,
Dimitar
ADMIN
Dimitar
Posted on: 08 Apr 2019 10:54
Hello David,

I want to ask you to open a new support ticket (which is a private thread) and attach your file there. This will allow us to test this with it and make sure we are not missing another case. In addition, we are already working on this and the fix will be available in next's week internal build. 

As to the VB code as well, we are aware that many of our customers are using it. All the documentation and the examples in the WinForms suite are available in VB as well. In the feedback portal, we do not have a good way to present the code in both languages (the content here is added dynamically via an internal service and the styling capabilities are limited) and the workaround is usually present in the language used in the current thread. Please note that we provide a free converter which is useful for such code snippets: Code Converter C# to VB and VB to C# – Telerik.

Should you have any other questions do not hesitate to ask.
 
Regards,
Dimitar
Progress Telerik
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
David
Posted on: 05 Apr 2019 23:48
The bookmarks don't work for me either in Windows UI.  Clicking on a bookmark doesn't do anything.  They work fine in Adobe Acrobat.  I also wish that Telerik would realize that people still program in VB.  Why can't we get equal treatment?  Anything displayed in C# should have the equivalent displayed in VB.