So I am working on an Angular2 application. I have a table where each record represent a student and includes a checkbox
<input class="mycheckbox" type="checkbox" [value]='student.StudentId'>
At some point user will click on a button that needs to get the value of all selected check-boxes.
I am not sure who should I address this.
One idea is that each student will have a value of checked or not. And this has to be done through two-way bindings.
However this will imply that each time u have to go through all students
Is this the best available option ? And is there something that matches the following JQuery:
$('.mycheckbox:checked').each(function(){
ng-model
, you can use this? – LiebfraumilchngFor
over an array of students you can bind to the array items and then just filter the studends where the value is true. – Bluecollar