Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Scrollbar in QlikView Extension Objects?

Hello, I'm creating a custom Pivot table with Extension Objects and would like to have a vertical Scrollbar to be able to scroll through all my data.

Does anyone know if that's possible and maybe have an example of how?

1 Solution

Accepted Solutions
Not applicable
Author

you can set the CSS 'overflow' property of your extension element to 'scroll' like this:

this.Element.style.overflow = 'scroll';

View solution in original post

2 Replies
Not applicable
Author

you can set the CSS 'overflow' property of your extension element to 'scroll' like this:

this.Element.style.overflow = 'scroll';

Not applicable
Author

Thanks, worked exactly as I wanted!