I am using a back-end server (Java Spring) that has Pager enabled. I am loading 100 records per page on a HTTP call.
On angular2 service, it is consuming the API ca
Try to set the settings to the smart-table like this
And at your component, define the settings, something like this:
public settings: TableSettings = new TableSettings(); ngOnInit(): void { ... this.settings.pager.display = true; this.settings.pager.perPage = 100; ... }