setOptions

Update the dimensions of the widget, the active page or the processor.

To run the below example, open it in Dojo

Example

<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/4.3.136/pdf.mjs" type="module"></script> <!-- Include pdf.js before the kendo scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/4.3.136/pdf.worker.mjs" type="module"></script> <!-- Include pdf.worker.js before the kendo scripts -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2024.4.1112/js/kendo.all.min.js" type="module"></script>

<div id="example">
    <div class="box">
        <div class="box-col">
            <ul class="options">
                <li>
                    <button class="k-button" id="setOptions" type="button">Set the new options</button>
                </li>
            </ul>
        </div>
    </div>
    <div id="pdfViewer">
    </div>
</div>

<script type="module">
    $(document).ready(function () {

        var pdfViewer = $("#pdfViewer").kendoPDFViewer({
            pdfjsProcessing: {
                file: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
            },
            width: "100%",
            height: 700
        }).data("kendoPDFViewer");

        $("#setOptions").click(function () {
            pdfViewer.setOptions({
                width: "85%",
            height: 450
            })
        });
    });
</script>
In this article