jbooker
(Josh Booker)
2
You could do the sum client-side without a need for the UD column like so:
Textbox > epBinding > TransView.TotalLineValue
Event: trigger on KeyValue changed
Row-update > TransView.TotalLineValue
Expression:
trans.dataView('ReqDetail').data.reduce((sum, item) => sum + item.DocExtCost, 0)
5 Likes