Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Fit zoom to window in Web browser

Hi all,

I have layout issues between the view in my development environment and the view in the web browser.

the view in the browser doesn't fit the page thus it fits in my Development environment.

in the web I need to scroll down which I don't need to do in the development environment.

How can tackle this issue?

Thanks,

Boris

1 Reply
Anonymous
Not applicable
Author

If the end users are using plugin client. then you can provide a button on the page to say "fit zoom to window" and call a macro like below.

SUB FitZoon2Window

  ActiveDocument.ActiveSheet.FitZoomToWindow

  ActiveDocument.GetApplication.WaitforIdle

  ActiveDocument.ActiveSheet.ApplyZoomToAllSheets

END SUB

Else, if your users are on the ajax client. then, my fried you suggest them to use the zoom options on the browsers itself to adjust the zoom. Or you can hold the control key and use the scroll on the mouse to adjust the zoom.

Thanks,

Aadil