ahmed elbarbary

ahmed elbarbary

  • NA
  • 1.6k
  • 256.3k

cell text moved to another cell beside?

May 18 2020 3:24 AM
cell text moved to another cell beside?
 
I have table html  cell text moved to another cell 
 
reportid reportname  reportdate 
 
1            12/12/2020 
 
I notice that report date content data moved to reportname  why i dont know 
this is my table structure 
  1. <table style="width: 100%; border: 1px solid #ddd;" class=" table table-striped">  
  2.       
  3.     <thead style="width: max-content">  
  4.       <tr>  
  5.         <th _ngcontent-wdt-c24="" style="width: max-content;" *ngFor="let coln of headerCols">  
  6.           <ng-container *ngIf ="coln != 'totalCount'">  
  7.           
  8.           {{coln}}  
  9.           </ng-container>  
  10.         </th>  
  11.           
  12.   
  13.       </tr>  
  14.     </thead>  
  15.     <tbody>  
  16.       <ng-container *ngFor="let repdata of ReportData">  
  17.       <tr *ngFor="let rep of contentBody">  
  18.         
  19.         <td *ngFor="let r1 of rep"><span ngcontent-wdt-c24="" nbtooltipplacement="right" class="ng-star-inserted">{{r1}}</span></td>  
  20.           
  21.           <td *ngIf="repdata.inRunTime==0 && repdata.parameterName !==null && repdata.downloadProcedureName !==null"> <i nbTooltip="Download" class="btn btn-link" data-toggle="modal" data-target="#roeDetailsModal"  
  22.             nbTooltipPlacement="bottom" (click)="getDataByRevision(rep[0])" nbTooltipStatus="primary">  
  23.              <nb-icon icon="cloud-download-outline"></nb-icon>  
  24.            </i> </td>  
  25.           
  26.           
  27.               
  28.   
  29.       </tr>  
  30.     </ng-container>  
  31.    
  32.   
  33.     </tbody>  
  34.   </table>