<tr
class="heightTr selector-481-66"
(mouseover)="row.hover=true"
(mouseout)="row.hover=false"
[ngStyle]="{ 'background-color': (row.hover && enablehover) ? this.hovercolor : row.Color }"
[ngClass]="
blackBackGround
? enablehover
? 'whiteText'
: 'whiteText'
: enablehover
? 'blackText'
: 'blackText'
"
mat-row
*matRowDef="let row; columns: headersToDisplay | paginate : {
id: widgetidpdf + 'tablePaginator',
itemsPerPage: defaultPageSize,
currentPage: p,
totalItems: totalItems
}">
</tr>
While using paginate with pipe some columns are not visible when we didn't select pagination and when we remove paginate with pipe all the columns are visible but now i am not able to paginate help me to fix this issue
I am expecting a solution where i can get all the data