This is a migrated thread and some comments may be shown as answers.

pdfNavigator

5 Answers 79 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Andre
Top achievements
Rank 1
Andre asked on 15 Dec 2018, 12:58 PM

i have noticed that if you click on the + icon of the pdfnavigator it doesn't work. outside the + icon it works.
is this only the case with me ?

 

andre

5 Answers, 1 is accepted

Sort by
0
Hristo
Telerik team
answered on 17 Dec 2018, 01:11 PM
Hi Andre,

Thank you for writing.

We are not aware of a similar issue in the pdf navigator. I also tried reproducing it in a sample project without success. Can you please check how the project will run on your end? In case the issue persists please let me know how I can reproduce it on my end.

Regards,
Hristo
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.
0
Andre
Top achievements
Rank 1
answered on 18 Dec 2018, 05:15 PM

hi hristo

maybe it's because i'm hiding menu points ?

 

            radPdfViewer_infoFactory.LoadDocument("info.pdf");
            radPdfViewer_infoFactory.FitToWidth = true;
            radPdfViewer_infoFactory.EnableThumbnails = false;

            radPdfViewerNavigator1.Rows[0].Strips[0].Items[1].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[3].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[4].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[5].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[6].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[7].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[10].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[11].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[12].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[14].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[18].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[19].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[27].VisibleInStrip = false;

0
Andre
Top achievements
Rank 1
answered on 18 Dec 2018, 05:16 PM

hi hristo

maybe it's because i'm hiding menu points ?

 

            radPdfViewer_infoFactory.LoadDocument("info.pdf");
            radPdfViewer_infoFactory.FitToWidth = true;
            radPdfViewer_infoFactory.EnableThumbnails = false;

            radPdfViewerNavigator1.Rows[0].Strips[0].Items[1].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[3].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[4].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[5].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[6].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[7].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[10].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[11].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[12].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[14].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[18].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[19].VisibleInStrip = false;
            radPdfViewerNavigator1.Rows[0].Strips[0].Items[27].VisibleInStrip = false;

0
Accepted
Hristo
Telerik team
answered on 20 Dec 2018, 12:40 PM
Hi Andre,

The undesired behavior is caused by the drop-down list with the zoom percentage. A possible approach is to set the VisibleInStrip property in the Shown event of the form. Alternatively, you can set the Visibility of the item to collapsed: 
this.radPdfViewerNavigator1.ZoomDropDown.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;

I hope this will help. Let me know if you need further assistance.

Regards,
Hristo
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.
0
Andre
Top achievements
Rank 1
answered on 20 Dec 2018, 04:06 PM

hi hristo

That was the solution!
many thanks

Tags
GridView
Asked by
Andre
Top achievements
Rank 1
Answers by
Hristo
Telerik team
Andre
Top achievements
Rank 1
Share this question
or