Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sellison
Partner - Contributor
Partner - Contributor

getData() method row limit

Hi all,
I am using the Field API getData() method to gather all rows of a field likse this:

 

const myField = app.field("myField").getData({rows: 10000});
myField.OnData.bind(() => {
   //do something
});

 

However I have more than 10000 entries in my Field and getData seems to  have a limit of 10000 even when I change rows to a higher number. The getMoreData() exists but the documentation to that method is very very minimal. Is there any workaround to this problem?

Labels (1)
  • API

1 Solution

Accepted Solutions
alex_colombo
Employee
Employee

Hi @sellison when you go to get data from Qlik you have to deal with hypercube and limit of 10.000 cells.

For solved this one you have to perform different calls for getting al the data pages. I usually create a ListBox for getting all the values of a field and then loop over all possible data.

Here you can find an example

View solution in original post

1 Reply
alex_colombo
Employee
Employee

Hi @sellison when you go to get data from Qlik you have to deal with hypercube and limit of 10.000 cells.

For solved this one you have to perform different calls for getting al the data pages. I usually create a ListBox for getting all the values of a field and then loop over all possible data.

Here you can find an example