You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to position the paginator above the grid. Preferably inside the "outer top" section.
The reason for this is that our UI design calls for filters and action buttons in the top-left with the paginator (on the same row) to the right. Then the grid positioned below.
I had expected to be able to do this by adding the paginator like this:
<pbl-ngrid [dataSource]="ds" [columns]="columns" usePagination>
<div *pblNgridOuterSection="'top'" style="display:flex">
<div style="flex-grow:1">
filter and action buttons go here
</div>
<pbl-ngrid-paginator *pblNgridPaginatorRef="let grid" [grid]="grid" [paginator]="grid.ds.paginator"></pbl-ngrid-paginator>
</div>
</pbl-ngrid>
But doing that still results in it being added to the projected content below the grid.
The text was updated successfully, but these errors were encountered:
I would like to be able to position the paginator above the grid. Preferably inside the "outer top" section.
The reason for this is that our UI design calls for filters and action buttons in the top-left with the paginator (on the same row) to the right. Then the grid positioned below.
I had expected to be able to do this by adding the paginator like this:
But doing that still results in it being added to the projected content below the grid.
The text was updated successfully, but these errors were encountered: