https://i.stack.imgur.com/JIGKp.png i need to find the amount and subtotal.
我需要计算(qty * price)两列值并将结果存储到ng2-smart-table的另一列(金额)
答案 0 :(得分:0)
这是一个很流畅的方法来选择这个问题
Total:{
title: 'Total',
valuePrepareFunction :(cell, row) =>{
return row.quantity * row.productPrice;
}
}