Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
Gartner® Magic Quadrant™: 15 YEARS A LEADER - GET THE REPORT
cancel
Showing results for 
Search instead for 
Did you mean: 
mikecrengland
Creator III
Creator III

Vertical scroll bar in data section of straight table missing

Hello -

Recently, the scroll bar in the data sections (edit mode) of the Straight Table object is missing. Using Qlik Cloud.

mikecrengland_0-1749071121853.png

 

I've deleted cookies and cache but no luck. Anyone else experiencing this? 

 

Thanks,

 

mike

 

Labels (2)
1 Solution

Accepted Solutions
BPiotrowski
Partner - Contributor III
Partner - Contributor III

Hi, @mikecrengland 

I can see qlik have updated this table and left overflow in wrong place so if you want your scroll back you need to overwrite a class.

Ctrl+Shift+I or developer tools

Open console and paste the JQuery code below

$('.css-w8rns').css('overflow','scroll')

this works untill you refresh or change sheet and than you need to do it again.

On touch screen mode it occurs to, so for me its a bag and the overflow exists under other element 😉

View solution in original post

2 Replies
BPiotrowski
Partner - Contributor III
Partner - Contributor III

Hi, @mikecrengland 

I can see qlik have updated this table and left overflow in wrong place so if you want your scroll back you need to overwrite a class.

Ctrl+Shift+I or developer tools

Open console and paste the JQuery code below

$('.css-w8rns').css('overflow','scroll')

this works untill you refresh or change sheet and than you need to do it again.

On touch screen mode it occurs to, so for me its a bag and the overflow exists under other element 😉

mikecrengland
Creator III
Creator III
Author

Thank you!