Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
twanqlik
Creator
Creator

HTML Box + Scroll Bars

I want to view HTML code in my Qlik sense dashboard, kind of a HTML box.

There are extensions that almost do what i want, however they don't include scroll bars. Hence, not the complete page will be shown, it depends on how large the box is. See below for an example.

Those extensions are: 'Media Box'  and htmlBox.

Are there extensions that can be used to view HTML code and also support scrollbars that enables you to view the complete 'page' ?

Example.png

1 Solution

Accepted Solutions
tschollqlikview
Partner - Contributor III
Partner - Contributor III

What you need is the CSS Property overflow.

Add the following snippet to the end of the paint function.

$element.css("overflow", "scroll"); //assuming the the rendered element is namned $element

For more details check here:

Tryit Editor v3.5

View solution in original post

2 Replies
satishkurra
Specialist II
Specialist II

Please check qlik branch for Screen Resize extension. This should solve

tschollqlikview
Partner - Contributor III
Partner - Contributor III

What you need is the CSS Property overflow.

Add the following snippet to the end of the paint function.

$element.css("overflow", "scroll"); //assuming the the rendered element is namned $element

For more details check here:

Tryit Editor v3.5