I have a table with 5 columns and this table data is hard-coded, that is it doesn't use ng-repeat directive like
<tr ng-repeat="obj in collection">one of the columns contain a checkbox if the user selects a checkbox of a row, i need to extract the values of the other four columns of that row.i read that for DOM manipulation we have to create custom directive, my doubt is what should go inside the directive can i use jquery to traverse the DOM and get the values of the other four columns or is there a way to do it without using jQuery?
<td>{{obj.name}}</td>
<td>{{obj.class}}</td>
</tr>.