Add content from a column

0

I need to add the content of a table that I am loading with ng_repeat . It could also be running the entire object from the controller.js but I'm not sure how.

dato1 dato2 dato3
xx    xx    5
xx    xx    8
--    --    13 tfoot
    
asked by CristianBonk 26.01.2018 в 20:48
source

1 answer

0

ng-repeat="item in Data"

col-1 col-2 col-3 item.dato1 item.dato2 (item.dato1 + item.dato2)

    
answered by 26.01.2018 в 21:18