Add footer to the Pager control

Mirrored the Head functionality for <tfoot> tag
This commit is contained in:
Leigh Pointer 2022-09-28 14:00:53 +02:00
parent 2d95fe294c
commit 44242fdb4a

View File

@ -70,6 +70,9 @@
}
}
</tbody>
<tfoot>
<tr class="@RowClass">@Footer</tr>
</tfoot>
</table>
</div>
}
@ -185,6 +188,9 @@
[Parameter]
public RenderFragment<TableItem> Row { get; set; } = null; // required
[Parameter]
public RenderFragment Footer { get; set; } = null; // only applicable to Table layouts
[Parameter]
public RenderFragment<TableItem> Detail { get; set; } = null; // only applicable to Table layouts