我将数据加载到从API垫子表数据源。 有这将在顶部加入一个新行的addnewrow()方法。 我实际上是试图使表的第一列编辑。 只有当他们创建一个新的行(IE)的用户可以给输入。 在表中的数据的其余部分应该为可编辑。 所以,我默认使用当地的标志变量假。 基于所述标志,我创造ng-template
与ng-container.
。 如果它是一个新行,第一列是唯一可编辑的列,否则它不应该是编辑。 我不知道为什么这是行不通的。
预期:
- 只有新添加的行的第一列应该为可编辑
- 保存本地存储。
请检查最小的演示- stackblitz ,因为我没有权利分享实际的片段,我的道歉。
请分享任何工作的例子,最好的办法(ES)要达到的目标。
片段
<table mat-table #methedofaccept [dataSource]="dataSource" class="mat-elevation-z8" id= "tbl">
<ng-container *ngIf= "isColumnEditable == true; then showInputField else normalColumn ">
<th mat-header-cell *matHeaderCellDef> List of Values </th>
</ng-container>
<ng-template #showInputField>
<td mat-cell matColumnDef="title" *matCellDef="let element" >
<mat-form-field >
<input matInput [value]="element.title" [(ngModel)]="element.title">
</mat-form-field>
</td>
</ng-template>
<ng-template #normalColumn>
<div matColumnDef="title">
<td mat-cell *matCellDef="let element"> {{element.title}} </td>
</div>
</ng-template>
<ng-container matColumnDef="action">
<th mat-header-cell *matHeaderCellDef> Action </th>
<td mat-cell *matCellDef="let element">
<i *ngIf="element.endDate == null " class="material-icons clickable" (click)="deleteRow(element)">delete</i>
<i *ngIf="element.endDate != null" class="material-icons clickable ct-blue undo-icon" (click)="undoRow(element)">undo</i>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;" [ngClass]="{'row-deleted': row['isDeleted']" >
</tr>
</table>
错误类型错误:无法读取的未定义的属性“模板”
谢谢
我从你的问题有:
- 使表编辑,即用户的第一列可以给输入,只有当他们创建新行。 在表中的数据的其余部分应该为可编辑
- 保存本地存储。
在你的stackblitz ,使表滤波,example.html的是:
<div class="example-container mat-elevation-z8">
<mat-table #table [dataSource]="dataSource">
<!-- Position Column -->
<ng-container matColumnDef="position">
<mat-header-cell *matHeaderCellDef> No. </mat-header-cell>
<mat-cell *matCellDef="let element">
<ng-container *ngIf='element.editable'>
<input type="number" [(ngModel)]=element.position (ngModelChange)="inputChanged($event)" />
</ng-container>
<ng-container *ngIf='!element.editable'>
{{element.position}}
</ng-container>
</mat-cell>
</ng-container>
<!-- Name Column -->
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef> Name </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.name}} </mat-cell>
</ng-container>
<!-- Weight Column -->
<ng-container matColumnDef="weight">
<mat-header-cell *matHeaderCellDef> Weight </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.weight}} </mat-cell>
</ng-container>
<!-- Symbol Column -->
<ng-container matColumnDef="symbol">
<mat-header-cell *matHeaderCellDef> Symbol </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.symbol}} </mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
</div>
<button (click)="addNewRow()">Add new row</button>
在你的stackblitz ,使表过滤-example.ts是:
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { MatTableDataSource, MatTable } from '@angular/material';
/**
* @title Table with filtering
*/
@Component({
selector: 'table-filtering-example',
styleUrls: ['table-filtering-example.css'],
templateUrl: 'table-filtering-example.html',
})
export class TableFilteringExample implements AfterViewInit {
@ViewChild('table') table: MatTable<Element>;
displayedColumns = ['position', 'name', 'weight', 'symbol'];
// dataSource = new MatTableDataSource([]);
data: Element[] = [];
constructor(){
console.log(this.data);
}
ngAfterViewInit(){
if (this.table){
//console.log('got table');
if (this.table.dataSource) {
this.data = (this.table.dataSource as Element[]);
}
this.data.push(ELEMENT_DATA[this.data.length]);
this.data.push(ELEMENT_DATA[this.data.length]);
this.data.push(ELEMENT_DATA[this.data.length]);
this.data.push(ELEMENT_DATA[this.data.length]);
this.table.dataSource = this.data;
this.table.renderRows();
}
}
inputChanged(event){
this.updateLocalStorage();
}
updateLocalStorage(){
localStorage.setItem('myArray', JSON.stringify(this.table.dataSource) );
}
addNewRow() {
let data: Element[] = [];
if (this.table.dataSource) {
data = (this.table.dataSource as Element[]);
}
ELEMENT_DATA[data.length].editable =true;
data.push(ELEMENT_DATA[data.length]);
this.table.dataSource = data;
this.table.renderRows();
}
}
export interface Element {
name: string;
position: number;
weight: number;
symbol: string;
editable: boolean;
}
const ELEMENT_DATA: Element[] = [
{position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H', editable: false},
{position: 2, name: 'Helium', weight: 4.0026, symbol: 'He', editable: false},
{position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li', editable: false},
{position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be', editable: false},
{position: 5, name: 'Boron', weight: 10.811, symbol: 'B', editable: false},
{position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C', editable: false},
{position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N', editable: false},
{position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O', editable: false},
{position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F', editable: false},
{position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne', editable: false},
{position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na', editable: false},
{position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg', editable: false},
{position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al', editable: false},
{position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si', editable: false},
{position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P', editable: false},
{position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S', editable: false},
{position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl', editable: false},
{position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar', editable: false},
{position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K', editable: false},
{position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca', editable: false},
];