ahmed elbarbary

ahmed elbarbary

  • NA
  • 1.6k
  • 254.8k

How to remove plain text URL from data content column name o

May 20 2020 9:35 PM
I face issue Cannot hide or remove URL exist as plain text on column name offilneUrl
 
I already do as link so that no need to plain text URL above
 
So I need to hide or remove URL plain text above word page link .
  1. <tbody>  
  2. <ng-container *ngFor="let repcon of ReportControl">  
  3. <tr *ngFor="let rep of contentBody">  
  4. <td *ngFor="let coln of headerCols">  
  5. <span>  
  6. {{rep[coln]}}  
  7. </span>  
  8. <div *ngIf="coln==repcon.fieldName">  
  9. <div *ngIf="repcon.columnType==1">  
  10. <a (click)="goToLink(rep.offilneURL)">page link</a>  
  11. </div>  
  12. </div>  
  13. </td>  
  14. </tr>  
  15. </ng-container>  
  16. </tbody>  
see image below the text with green color that i need to remove because it already have link
 

Answers (1)