:
<md-input #input // NOTICE #input
type="{{cell.type}}"
value="{{getInputValue(cell) || '--'}}"
[placeholder]="cell.label"></md-input>
:
export class MyComponent {
@ViewChildren('input') inputs;
public updateData(): void {
console.log(this.inputs) //this will give access to id and values (explore it on google chromes console)
console.log(this.inputs.toArray().map(x => x.value)) // this gives access to values
}
}