I have created common component which will render data in table format.
data-table.component.ts (this is reusable component, can be used by any child component)
@Component({
selector: 'data-table',
templateUrl: './data-table.component.html',
styleUrls: ['./data-table.component.css']
})
export class DataTableComponent implements OnInit {
constructor() { }
ngOnInit(): void {
//wanted to access child here(or inside any method in this class) to set the width of each <td> from child
//wanted to access #rowTemplate children from child for all 3 <td>
}
setColumnWidth(width: string = "") {
if (width != "") {
return 'width:' + width;
}
}
}
data-table.component.html
<table style="width:100%;">
<thead>
<tr>
<th *ngFor="let c of columns" style="{{setColumnWidth(c.width)}}">
{{c.fieldTitle}}
</th>
</tr>
</thead>
<tbody>
<ng-container *ngTemplateOutlet="rowTemplate"></ng-container>
</tbody>
</table>
resource-updates.component.ts (this is child component)
@Component({
selector: 'resource-updates',
templateUrl: './resource-updates.component.html',
styleUrls: ['./resource-updates.component.css']
})
export class ResourceUpdatesComponent implements OnInit {
columns: Column[] = [];
rows: any[] = [];
constructor() { }
ngOnInit(): void {
//Preparing list for columns
this.columns.push(new Column({ fieldName: 'Id', fieldTitle: 'Id', isSortable: false, width: '5%' }));
this.columns.push(new Column({ fieldName: 'Title', fieldTitle: 'Title', width: '60%' }));
this.columns.push(new Column({ fieldName: 'Type', fieldTitle: 'Type', width: '35%' }));
//Preparing list for rows
this.rows = [
{"id":5,"title":"Air Gas Guideline","type":"PPT"},
{"id":6,"title":"Air Pollution User Reference","type":"Website"},
{"id":18,"title":"Avian Influenza (H7N9) User Reference","type":"Website"},
{"id":12,"title":"Avian Influenza (H7N9) for high risk","type":"PPT"},
{"id":11,"title":"Avian Influenza (H7N9) for normal","type":"PPT"}
];
}
}
resource-updates.component.html (wanted to set width of 3 below, in Parent (common component) from columns.width property)
<ng-template #rowTemplate>
<tr *ngFor="let r of rows">
<td>{{r.id}}</td>
<td>{{r.title}}</td>
<td>{{r.type}}</td>
</tr>
</ng-template>
<data-table [columns]="columns" [rowTemplate]="rowTemplate"></data-table>
Can any body help to access #rowTemplate children element for setting up width from columns[0].width and respectively...
If I am not understanding wrong, you want to access to child component's ng-template from parent component? If it is, this is the case that I used before when create data-table controls.
import { Directive, ContentChild, TemplateRef, Input } from "@angular/core";
@Directive({ selector: "np-column" })
export class NpColumnDirective {
@Input() name: string;
@ContentChild(TemplateRef) cellTemplate: TemplateRef<any>;
constructor() { }
}
@ContentChildren(NpColumnDirective) columnComponents: QueryList<NpColumnDirective>;
Here is the whole code I used for creating data-table, just for your reference: datatable demo