Blazor - Hide tooltips in Viewer

Stimulsoft Reports.WEB discussion
Post Reply
Jose
Posts: 16
Joined: Thu Oct 17, 2019 8:42 am

Blazor - Hide tooltips in Viewer

Post by Jose »

Hi!

I don't want to see the tooltips in the Viewer. For example: Print, First Page, Next Page.
I tried this: StiOptions.Appearance.ShowTooltipsHelp = false;
but no effect.

Than you

Regards
Attila
Lech Kulikowski
Posts: 6247
Joined: Tue Mar 20, 2018 5:34 am

Re: Blazor - Hide tooltips in Viewer

Post by Lech Kulikowski »

Hello,

Do you need to hide these buttons or only tooltips for these buttons?

Thank you.
Jose
Posts: 16
Joined: Thu Oct 17, 2019 8:42 am

Re: Blazor - Hide tooltips in Viewer

Post by Jose »

Hi!

Only the tooltips.
(These tooltips almost completely hide the buttons unforunately.)

Thanks.

Attila
Lech Kulikowski
Posts: 6247
Joined: Tue Mar 20, 2018 5:34 am

Re: Blazor - Hide tooltips in Viewer

Post by Lech Kulikowski »

Hello,

We need some additional time to investigate the issue, we will let you know about the result.

Thank you.
Max Shamanov
Posts: 786
Joined: Tue Sep 07, 2021 10:11 am

Re: Blazor - Hide tooltips in Viewer

Post by Max Shamanov »

Hello,

You need to use this following code:

Code: Select all

 
 <StiBlazorViewer ID="WebViewer1" Options="@Options" />
 
 public StiBlazorViewerOptions Options = new StiBlazorViewerOptions()
        {
            Appearance =
        {
            ShowTooltips = false
        }
        };
        
or

Code: Select all

 <StiBlazorViewer ID="WebViewer1" Options="@Options" />

 public StiBlazorViewerOptions Options = new StiBlazorViewerOptions();
   
    protected override void OnInitialized()
    {
        base.OnInitialized();
        Options.Appearance.ShowTooltips = false;
        }
Thank you.
Jose
Posts: 16
Joined: Thu Oct 17, 2019 8:42 am

Re: Blazor - Hide tooltips in Viewer

Post by Jose »

Hi!

Thank you very much.
That's what I want (Beatles :-)

Best Regards
Attila
Max Shamanov
Posts: 786
Joined: Tue Sep 07, 2021 10:11 am

Re: Blazor - Hide tooltips in Viewer

Post by Max Shamanov »

Hello,

You are Welcome!
Post Reply