I want to call this.params.api.stopEditing();
when the CellEditor lose the focus.
app.component.ts
onFocusOut(): void {
this.params.api.stopEditing();
}
app.component.html
<input #container triggers="" type="text" #dp="bsDatepicker" class="form-control" (bsValueChange)="onValueChange($event)" bsDatepicker
[bsConfig]="{ dateInputFormat: 'DD.MM.YYYY', containerClass: 'theme-dark-blue' }"
[(ngModel)]="dateValue"
[minDate]="minDate"
[maxDate]="maxDate"
(focusOut)="onFocusOut()">
But focusOut is not triggered. Any idea why is not triggered?