Show FindButton in moble View

Stimulsoft Reports.JS discussion
Post Reply
rjorge99
Posts: 36
Joined: Tue Feb 28, 2023 6:24 pm

Show FindButton in moble View

Post 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
Max Shamanov
Posts: 975
Joined: Tue Sep 07, 2021 10:11 am

Re: Show FindButton in moble View

Post 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.
Max Shamanov
Posts: 975
Joined: Tue Sep 07, 2021 10:11 am

Re: Show FindButton in moble View

Post 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.
Post Reply