Advertisement
Guest User

Untitled

a guest
Aug 16th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <app-table-cell
  2. [content]="">
  3. <ng-template #templateContent>
  4. <button
  5. type="button"
  6. class="btn btn-default"
  7. (click)="viewSession($event, session)">View</button>
  8. </ng-template>
  9. </app-table-cell>
  10.  
  11. viewSession(event, session) {
  12. event.preventDefault();
  13. event.stopImmediatePropagation();
  14. this.openModal(this.newPoolSchema, session, { readonly: true }).then(() => {});
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement