Completed
Last Updated: 12 Oct 2023 10:22 by ADMIN
Created by: Narendra
Comments: 7
Category: PDFViewer
Type: Feature Request
15
Can you implement a scrollbar for the PDF viewer control? The current scrolling doesn't allow the user to grab the scrollbar and do the scrolling.
Unplanned
Last Updated: 28 Jun 2023 10:12 by ADMIN
Created by: Mugurel
Comments: 1
Category: PDFViewer
Type: Feature Request
1

Currently, default zoom can be set through JavaScript in the Render event handler of the PDFViewer:

Attach the handler:

.Events(e => e.Render("onRender"))

The event handler:

<script>
    var firstRender = true;

    function onRender(e) {
        if (firstRender) {
            var combobox = e.sender.toolbar.element.find("[data-command=ZoomCommand][data-role=combobox]").data("kendoComboBox");
            combobox.value("fitToWidth");
            combobox.trigger("change");
            firstRender = false;
        }
    }
</script>

A better solution would be a dedicated configuration option that allows setting the default zoom when declaring the PDFViewer.

Unplanned
Last Updated: 09 Nov 2023 13:03 by Eric Mooiweer
Created by: Eric Mooiweer
Comments: 0
Category: PDFViewer
Type: Feature Request
1
Currently, the Print functionality works only with PDF.js. Provide a Print option when the PDFViewer is configured to use DPLProcessing.
Unplanned
Last Updated: 21 Nov 2019 08:49 by ADMIN

Hi,

 

i tested the updated pdfviewer of version 2019.3.1023, but it did not work as expected.

I have some questions about usage und customizing

  1. How can i customize the toolbar actions, primary the print action/command? See the dojo link
  2. Is it possible to get the print window result of the pdf viewer?
  3. Is it possoble to call the print command? I tested the execute function, but it doesn't work. I get only an error (this is not an constructor...)
  4. the download function download every time a document.pdf, the assigned name is ignored

https://dojo.telerik.com/EmErekOB

 

Regards

Christian

Unplanned
Last Updated: 09 Dec 2019 13:32 by ADMIN
Created by: Albert
Comments: 1
Category: PDFViewer
Type: Feature Request
0
Please add keyboard scrolling support for the PDFViewer control. Scrolling through files with a lot of pages is very difficult.
Unplanned
Last Updated: 21 Jul 2020 11:40 by ADMIN
Created by: Margarita
Comments: 0
Category: PDFViewer
Type: Feature Request
0

Currently, the search in PDF Viewer is performed on every keypress in the search input field. 

The search performance of the widget could be improved if there is a possibility to perform a search on pressing "Enter". Another valuable enhancement could be a configuration that allows the search to be performed after entering a certain number of symbols.