Угловой 6 материал и таблица шириной стола - PullRequest
0 голосов
/ 13 февраля 2019

У меня есть таблица внутри мат-карты, но содержимое таблицы не во всю ширину.

установка таблицы как widht: 100% не работает

<mat-table [dataSource]="dataSource" class="mat-elevation-z8 resultsTable">
    <ng-container class="col-2" matColumnDef="id">
        <th mat-header-cell *matHeaderCellDef> ID gestión </th>
        <td mat-cell *matCellDef="let element"> {{element.id}} </td>
    </ng-container>

    <ng-container class="col-2" matColumnDef="solicitante">
        <th mat-header-cell *matHeaderCellDef> Solicitante </th>
        <td mat-cell *matCellDef="let element"> {{element.solicitante}} </td>
    </ng-container>

    <ng-container class="col-2" matColumnDef="tipoTramite">
        <th mat-header-cell *matHeaderCellDef> Tipo de trámite </th>
        <td mat-cell *matCellDef="let element"> {{element.tipoTramite}} </td>
    </ng-container>

    <ng-container class="col-3" matColumnDef="fechaAsignacion">
        <th mat-header-cell *matHeaderCellDef> Fecha de asignación </th>
        <td mat-cell *matCellDef="let element"> {{element.fecha}}</td>
    </ng-container>

    <ng-container class="col-2" matColumnDef="encargadoActual">
        <th mat-header-cell *matHeaderCellDef> Encargado actual </th>
        <td mat-cell *matCellDef="let element"> {{element.encargadoActual}}</td>
    </ng-container>

    <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
    <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>

</mat-table>

1 Ответ

0 голосов
/ 15 февраля 2019

Проблема была решена заменой <mat-table> на <table mat-table и установкой ширины 100%

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...