Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Scroll in text objects- Qlik Sense Mashup

Hi!

I have a problem when creating a Sense Mashup. If a text object is too long there is no possibility to scroll it down and I can only see the first part. In the app it works fine but in the mashup is not working.

Do you know if there is a solution or workaround for it ???

Thanks a lot in advance.

1 Solution

Accepted Solutions
websy1985
Luminary Alumni
Luminary Alumni

You could add the following CSS to your mashup:

.qv-ti{
     overflow-y:  auto;
}

I believe .qv-ti only impacts the Text-Image object but there's a chance this may add Y scrolling else where so you'll need to test it.

I hope that helps.

View solution in original post

2 Replies
websy1985
Luminary Alumni
Luminary Alumni

You could add the following CSS to your mashup:

.qv-ti{
     overflow-y:  auto;
}

I believe .qv-ti only impacts the Text-Image object but there's a chance this may add Y scrolling else where so you'll need to test it.

I hope that helps.

Not applicable
Author

It worked, thanks!!!