Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I am facing an issue with tables displayed in a mashup. Sometimes they come out to be scrollable, as I want them to, and sometimes they don't.
It appears to me that qlik somehow loads different scripts into my div.
In the picture you can see the code generated by qlik. On the left side the table came out static, on the right scrollable. The objects themselves in the Qlik app are identical and the website also.
I marked the differences that appear to cause the issue.
I am glad for any input on this. Scrollable tables are pretty important in my case.
Thanks,
Marco
Check if qlik sense provided css files are not conflicting with the styles in your mashup. If you see the conflict, try adding below style in your web page. Qlik provided styles should have higher priority to have all the qlik sense native features working
.qv-grid-object-scroll-area {
overflow-y: auto!important;
}
Hey Praveena,
thanks for your reply.
I could not find any conflicting styles, but I discovered that the problem primarily arises when the objects are placed inside a bootstrap carousel. On the fitst carousel page, displayed on initial pageload the tables are scrollable, only on other carousel slides the scrolling is not working.
Are there any known conflicts with bootstrap carousels?
Best ,
Marco
On change of carousel try rendering the table again using app.getObject(elem, objid);
Refer below link.
Thanks,This helped me