Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello -
Recently, the scroll bar in the data sections (edit mode) of the Straight Table object is missing. Using Qlik Cloud.
I've deleted cookies and cache but no luck. Anyone else experiencing this?
Thanks,
mike
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 😉
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 😉
Thank you!