如何在ng2-smart-table(angular2)中进行计算

时间:2018-04-08 06:38:35

标签: angular2-routing angular2-forms angular2-services ng2-smart-table

https://i.stack.imgur.com/JIGKp.png i need to find the amount and subtotal.

我需要计算(qty * price)两列值并将结果存储到ng2-smart-table的另一列(金额)

1 个答案:

答案 0 :(得分:0)

这是一个很流畅的方法来选择这个问题

Total:{
    title: 'Total',
    valuePrepareFunction :(cell, row) =>{
        return row.quantity * row.productPrice;
   } 
  }