Компоненты PrimeNG
Table
Sticky

Sticky

<p-table [value]="customersSticky" class="stickyStyle">
  <ng-template pTemplate="header">
    <tr>
      <th>Name</th>
      <th>Country</th>
      <th>Representative</th>
      <th>Status</th>
    </tr>
  </ng-template>
  <ng-template pTemplate="body" let-customer>
    <tr>
      <td>
        { { customer.name } }
      </td>
      <td>
        <span class="image-text">{ { customer.country.name } }</span>
      </td>
      <td>
        <span class="image-text">{ { customer.representative.name } }</span>
      </td>
      <td>
        <span [class]=""customer-badge status-" + customer.status">{ { customer.status } }</span>
      </td>
    </tr>
  </ng-template>
</p-table>