I utilized the angular 6 datatable to paginate the data in a table format.
https://www.npmjs.com/package/angular-6-datatable
Everything is functioning properly, but I am struggling with styling the footer of mfBootstrapPaginator.
https://i.sstatic.net/izdoi.png The items appear stacked vertically. Is there a way to align them horizontally or at least have them positioned next to each other?
<div class="table-responsive">
<table id="tablePreview" class="table table-hover table-bordered" [mfData]="data" #mf="mfDataTable" [mfRowsOnPage]="10">
<thead>
<tr>
<th>#</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of mf.data; let i = index;">
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<!-- I have 8 columns in my project -->
<td colspan="8">
<mfBootstrapPaginator [rowsOnPageSet]="[5,10,25, 50, 100]"></mfBootstrapPaginator>
</td>
</tr>
</tfoot>
</table>
</div>
I am using Angular 6 and Bootstrap 4.