Update checkbox onChange handler in the grid toolbar to emit an event
instead of trying to call the handler like a function.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Dan Wells <dbw2@calvin.edu>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
<label class="form-check-label">
<input class="form-check-input" type="checkbox"
[(ngModel)]="cb.isChecked"
- (click)="cb.onChange($event.target.checked)"/>
+ (click)="cb.onChange.emit($event.target.checked)"/>
{{cb.label}}
</label>
</ng-container>