-1
I am trying to sum up in the column of total prices, but it is not updated as you search, the value keeps the total sum and not the items that are showing.
angular.forEach($scope.receivables, function (item) {
$scope.valueTotalReceivable += item.price++;
return $scope.valueTotalReceivable;
});
I would like to show the updated values of the full price column while searching.