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.
...
paint: function ( ) {
//setup scope.data
if ( !this.$scope.data ) {
this.$scope.data = qlik.table( this );
}
}
...
...
<button ng-if="data.rowcount>data.rows.length" ng-click="data.getMoreData()">More</button>
...