Guest User

Untitled

a guest
Mar 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <tr *ngFor="let FineTunedData of FineTunedDatas | orderBy: key : reverse | familieFilter: family | searchfilter:filter | paginate: { itemsPerPage: 5, currentPage: f, id: 'f' };
  2. let i = index" (click)="setClickedRow(i)" [class.active]="i == selectedRow" (click)="GetCustomerDetails(FineTunedData)"
  3. >
  4. <td class="th">{{FineTunedData.article_ID}}</td>
  5. <td class="th">{{FineTunedData.description}}</td>
  6. <td class="th">{{FineTunedData.stockRAW}}</td>
  7. <td class="th">{{FineTunedData.ordersRAW}}</td>
  8. <td class="th">{{FineTunedData.family}}</td>
  9. <td class="th">{{FineTunedData.toProduceForecast}}</td>
  10. <td class="th">{{FineTunedData.toProduce}}</td>
  11.  
  12. </tr>
  13. <tr class="placeholder" *ngIf="!table1?.length > 0" id="no-drop">
  14. <td></td>
  15. <td></td>
  16. <td></td>
  17. <td></td>
  18. <td></td>
  19. <td></td>
  20. <td></td>
  21. </tr>
  22. </tbody>
Add Comment
Please, Sign In to add comment