source: trip-planner-front/src/app/location/add-location-to-planner-panel/add-location-to-planner-panel.component.html@ e29cc2e

Last change on this file since e29cc2e was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago

primeNG components

  • Property mode set to 100644
File size: 670 bytes
Line 
1<p-table [value]="planners" [paginator]="true" [rows]="3" [responsive]="true">
2 <ng-template pTemplate="header">
3 <tr>
4 <th pSortableColumn="name">Name <p-sortIcon field="vin"></p-sortIcon>
5 </th>
6 <th style="width:4em"></th>
7 </tr>
8 </ng-template>
9 <ng-template pTemplate="body" let-planner>
10 <tr>
11 <td>{{planner.name}}</td>
12
13 <td>
14 <button pButton pRipple type="button" icon="pi pi-heart"
15 class="p-button-rounded p-button-help p-button-text" (click)="selectPlanner(planner)"></button>
16 </td>
17 </tr>
18 </ng-template>
19</p-table>
20
Note: See TracBrowser for help on using the repository browser.