最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

angular - While using paginate if we use paginate with pipe all the data is displaying but when not some column are displayed -

programmeradmin5浏览0评论
<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

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论