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

HTML Pop-Up Extension

Hi - has anyone figured out a way to modify the HTML pop-up extension below such that when the pop-up is placed in the middle of page, user doesn't have to scroll up to see the pop-up? @lblumenfeld created this extension, which is great but would even be better with that change.

https://developer.qlik.com/garden/5ddcd57cf62b220018fd28dc

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

If you change the popup position to "fixed" it should appear in the viewport, regardless of where you're scrolled. A quick way to make that change would be to edit the HelpTextPopup.js file and add these two lines after line 198:

$("#help-box-container-" + objectID).css("position", "fixed");
$("#help-box-container-" + objectID).css("z-index", "9999");

Make sure you do a hard reload (Ctrl F5) after making the edit to pick up the change. 

-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com

View solution in original post

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

If you change the popup position to "fixed" it should appear in the viewport, regardless of where you're scrolled. A quick way to make that change would be to edit the HelpTextPopup.js file and add these two lines after line 198:

$("#help-box-container-" + objectID).css("position", "fixed");
$("#help-box-container-" + objectID).css("z-index", "9999");

Make sure you do a hard reload (Ctrl F5) after making the edit to pick up the change. 

-Rob
http://masterssummit.com
http://qlikviewcookbook.com
http://www.easyqlik.com