html - Send row info to angularjs controller when checkbox in row is clicked -
i have html code uses angularjs show table. on table, there checkbox on each row. the table looks this; here html code. <div ng-app ng-controller="checkctrl"> <table class="table table-hover data-table sort display" style="width:100%"> <thead> <tr> <th class="serial_"> serial </th> <th class="name_"> name </th> <th class="id_"> id </th> <th class="on_off_"> on/off </th> </tr> </thead> <tbody> <tr ng-repeat="item in check_items"> <td>{{item.serial}}</td> <td>{{item.name}}</td> <td>{{item.id}}</td> <td> ...