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
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
ng-repeat="item in Data"
col-1 col-2 col-3 item.dato1 item.dato2 (item.dato1 + item.dato2)