Skip to content

Commit

Permalink
Merge pull request #180 from reevelau/master
Browse files Browse the repository at this point in the history
Expose raw event object to the onCheckboxSelect listener
  • Loading branch information
ssuperczynski authored Nov 5, 2018
2 parents 804e08b + 42dbe6a commit 9c1fbe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/ngx-easy-table/components/base/base.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<input type="checkbox"
id="checkbox-{{rowIndex}}"
[checked]="isSelected"
(change)="onCheckboxSelect($event.target.value, row, rowIndex)">
(change)="onCheckboxSelect($event, row, rowIndex)">
<i class="ngx-form-icon"></i>
</label>
</td>
Expand Down Expand Up @@ -220,7 +220,7 @@
<input type="checkbox"
id="checkbox-draggable-{{rowIndex}}"
[checked]="isSelected"
(change)="onCheckboxSelect($event.target.value, row, rowIndex)">
(change)="onCheckboxSelect($event, row, rowIndex)">
<i class="ngx-form-icon"></i>
</label>
</td>
Expand Down

0 comments on commit 9c1fbe6

Please sign in to comment.