getMoreData method
Information noteSTABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
getMoreData()
Gets more data for your qHyperCube.
Version history
Version state | Details |
---|---|
Introduced | 2.1 |
Parameters
None.
Example
This example is based on using AngularJS in a Qlik Sense visualization extension.
Main extension script file:
...
paint: function ( ) {
//setup scope.data
if ( !this.$scope.data ) {
this.$scope.data = qlik.table( this );
}
}
...
AngularJS template:
...
<button ng-if="data.rowcount>data.rows.length" ng-click="data.getMoreData()">More</button>
...