@for (headerGroup of table.getHeaderGroups(); track headerGroup.id) {
@for (header of headerGroup.headers; track header.id) {
|
@if (!header.isPlaceholder) {
{{ header }}
}
|
}
}
@for (row of table.getRowModel().rows; track row.id) {
@for (cell of row.getVisibleCells(); track cell.id) {
|
{{ cell }}
|
}
}
@for (footerGroup of table.getFooterGroups(); track footerGroup.id) {
@for (header of footerGroup.headers; track header.id) {
|
@if (!header.isPlaceholder) {
{{ header }}
}
|
}
}
{{ stringifiedColumnOrdering() }}