I have a search bar in my toolbar as follows:
<ion-toolbar color="clarity">
<ion-searchbar
[(ngModel)]="searchText"
[showCancelButton]="false"
(ionInput)="onInput($event)"
(ionClear)="onClear($event)">
</ion-searchbar>
</ion-toolbar>
and the function in the corresponding TS file:
onClear(event){
this.searchText = "";
}
But the 'onClear' event never fires when search bars are clicked with a small click on x. Why is this?
source
share