This is my code.
I m getting data through ng-repeat and showing it as shown in below code.
What I want is if I click on either of the name then it should ale
You need to modify html and add selectInfo function in controller file.
selectInfo
html
{{x.id}} {{x.firstname}} {{x.middlename}} {{x.lastname}}
code
$scope.selectInfo=function(name){ alert(name); }