Posts by Almir Júnior • 31 points
2 posts
-
2
votes1
answer311
viewsQ: Dynamically populate a databind
I have a table with a shopping cart. Cart items are: n° pedido, produto, quantidade (in this case it is an input with ng-model='produto.quantidade * produto.preco' ) that will automatically fill the…
angularjsasked Almir Júnior 31 -
1
votes2
answers4984
viewsQ: How to insert taken data from a JSON file and put into a list with Angularjs
app js. (function(){ var myApp = angular.module('loja', []); myApp.controller('CarrinhoController', ['$scope','$http', function($scope, $http){ $scope.title = 'Lista de Produtos';…