Hi,
I'm a newbie on angularJS(and web developing).
Nowadays, I'm trying to make table ui with angularJS.
And, I made the table with 'ng-repeat' directive for simple editing.(adding row becomes easy.)
************************************************************************
<tbody id= "table_row">
<tr ng-repeat="row in rows" ng-click="tableRowClicked()">
<td ng-repeat="col in row">{{col}}</td>
</tr>
************************************************************************
But, now I have a problem with above code.
Even if I set the ng-click on every rows,( For editing selected row.)
I can't identify which row was clicked.
Are there any way to identify which row was clicked?
Thank you for reading.
Regards.