Page 1 of 1

Show FindButton in moble View

Posted: Fri Nov 08, 2024 7:50 pm
by rjorge99
Hi, is there a way to show the FindButton in mobile view ?

It true by default, but in the mobile view, I have not found the way to show it.

Thanks

Re: Show FindButton in moble View

Posted: Mon Nov 11, 2024 10:44 am
by Max Shamanov
Hello.

Sorry for the delay with an answer.
We need more time to prepare an answer for you.
We will let you know when we get any results.

Thank you.

Re: Show FindButton in moble View

Posted: Tue Nov 12, 2024 10:46 am
by Max Shamanov
Hello,

Please try to use the following code:

Code: Select all

<script>
    jsStiWebViewer1.InitializeMobile_ = jsStiWebViewer1.InitializeMobile;

    jsStiWebViewer1.InitializeMobile = function () {
        jsStiWebViewer1.InitializeMobile_();
        this.options.toolbar.showFindButton = true;
    }
</script>
Thank you.