Paginator constructor

Paginator(
  1. dynamic api
)

Implementation

Paginator(dynamic api) {
  this._currentPage = 1;
  this._perPage = 10;
  this._lastPage = 0;
  this.sort_col = "";
  this._api = api;
  this._total = 0;
  this._timestamp = 0;
  this.cCommunityCategoryIds = "";
  this.isReverse = false;
  this._stopScroll = false;
  this._urlFix;
}