Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Fetchig all selected data

In some extensions example I found next code, but seems it works not on all data, but only on the one page of data:

function updateData(component) {

    if (frameloaded) {

        // Cycle Through the data      

        var sectors = [];

        for ( var i = 0; i < component.Data.Rows.length; i++) {

            // get the row

            var row = component.Data.Rows;

            sectors.push({

                name : row[0],

                ....

            });

        }

        ....

    }

}

My question: how do I fetch all further pages of data in order to show it in my extension?

TIA,

1 Solution

Accepted Solutions
Alexander_Thor
Employee
Employee

Hello Vladimir,

As default the extension are exposed to 30(?) rows of data.

In your definition.xml file you increase this to suit your needs. Edit the PageHeigth property.

<ExtensionObject Label="MyExtension" Description="MyExtensionDescription" PageHeight="20000">

...

</ExtensionObject>

View solution in original post

1 Reply
Alexander_Thor
Employee
Employee

Hello Vladimir,

As default the extension are exposed to 30(?) rows of data.

In your definition.xml file you increase this to suit your needs. Edit the PageHeigth property.

<ExtensionObject Label="MyExtension" Description="MyExtensionDescription" PageHeight="20000">

...

</ExtensionObject>