Угловой / Материал 7 Как произвести аутсорсинг строк таблицы материалов - PullRequest
0 голосов
/ 12 ноября 2018

Я хочу перенести настройку строки таблицы моего администратора в один компонент строки, но я получил следующее сообщение об ошибке:

enter image description here

Если я использую селектор тегов вместо селектора атрибутов, я получу следующее:

Ошибка: не удалось найти столбец с идентификатором «заголовок». at getTableUnknownColumnError (table.es5.js: 651)

Что я устал:

мой-field.component.html:

<ng-container [matColumnDef]="myField + '-search'">
    <th mat-header-cell fxFlex *matHeaderCellDef>
        <mat-form-field [appearance]="appearance">
            <mat-label>{{label}}</mat-label>
            <input matInput (keyup)="applyFilter($event.target.value)" [placeholder]="placeholder">
        </mat-form-field>    
    </th>
</ng-container>

<ng-container [matColumnDef]="myField">
    <th mat-header-cell fxFlex fxLayoutAlign="start center" *matHeaderCellDef> 
        <div fxFlex="nogrow" mat-sort-header>{{header}}</div> 
    </th>
    <td mat-cell fxFlex fxLayoutAlign="start center" *matCellDef="let row"> {{row[myField]}} </td>
</ng-container>

мои-field.component.ts:

import { Component, OnInit, OnDestroy, Input, Output, EventEmitter } from '@angular/core';


@Component({
// moduleId: module.id,
selector: '[myField]',
templateUrl: './grid-field.component.html',
styleUrls: ['grid-field.component.scss']
})
export class GridFieldComponent implements OnInit, OnDestroy {
    public _class: string = 'GridFieldComponent';
    private nsp: string;

    @Input() label: string;
    @Input() header: string;
    @Input() option: string;
    @Input() appearance: string;
    @Input() placeholder: string;
    @Input() myField: string;

    @Output() onChange: EventEmitter<any> = new EventEmitter();

    constructor() {}

    public ngOnInit() {}

    public ngOnDestroy() {}

    public applyFilter(value) {
        const self = this;

        self.onChange.emit({
            'field': `-${self.myField}`,
            'value': value,
            'option': self.option
        })
    }
}

page.html:

<table mat-table [dataSource]="data" matSort>
    <ng-container myField="title" appearance="outline" label="Search" header="Title"></ng-container>
    <tr mat-header-row *matHeaderRowDef="displayedColumns" class="first-header-row"></tr>

    <tr mat-header-row *matHeaderRowDef="displayedSearchColumns"class="second-header-row" 
                        style="height: auto; padding: 10px 0;"></tr>

    <tr mat-row *matRowDef="let row; columns: displayedColumns;" style="height: auto;"></tr>
</table>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...