I\'m doing a web app.
I have a dynamic table. First, you choose a PRODUCT and then the LOT. The list of item in t
angular.module('app', []).controller('ExampleController', ['$scope', function($scope) { $scope.infos = [ {name: "i will go to modal 1"}, {name: "i will go to modal 2"} ]; $scope.goToModal = function(info) { $scope.newDataInModal = info; } } ]);
{{info.name}} Launch demo modal × Modal title {{newDataInModal.name}}