Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <ng-template pTemplate="emptymessage">
  2. <tr>
  3. <td>
  4. No records found
  5. </td>
  6. </tr>
  7. </ng-template>
  8.  
  9. this.myService
  10. .myHttpCallFunction(params)
  11. .pipe(
  12. finalize(() => this.loading = false)
  13. )
  14. .subscribe(
  15. (result: JsendResponse) => this.data = result.data,
  16. errors => this.errors = errors
  17. );
  18.  
  19. <p-table [value]="data?.data" [columns]="settings.columns" [lazy]="true" [loading]="loading">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement