Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
lcv
Contributor
Contributor

Scrollbar issue with QlikView Ajax Client

Hi,

We integrate charts from a QlikView document hosted on a QlikView 12 webserver into our web applications using the QlikView Ajax Client (QvAjax.js, version 12.87.0).

Our HTML code for embedding the charts looks like this:

<div avqview="[document_name]" avq="object:.Document\[object_id]" id="Document\[object_id]"></div>
 

To initialize the QlikView charts, we use javascript like this::

Qva.QvAjaxZfcPath = "xxxxx";
qva = new Qva.PageBinding("[document_name]");
qva.View = "[document_name]";
qva.AuthenticateUrl = 'xxxx';
qva.Ticket = "xxxx";
new Qva.Modal();
new Qva.Scanner(qva);
Qva.Start();


This works well. However, we encounter an issue: the grid graphs have a vertical scroll bar, but the ListBox graphs do not.

Here is an example of our ListBox implementation (see attachement: listbox_no_vertical_scrollbar.png):

<div avqview="[document_name]" avq="object:.Document\LB09" id="Document\[object_id]" objsubtype="LB">...</div>
 

And here is an example of our Grid implementation (see attachement: grid_with_vertical_scrollbar.png):

<div avqview="[document_name]" avq="object:.Document\TB03" id="Document\[object_id]" objsubtype="TB" objtype="Grid">...</div>

Any insights or solutions to resolve the scrollbar issue for the ListBox graphs would be greatly appreciated.

Thank you!

Labels (2)
0 Replies