ngOnInit(): void {
this.mode = 'CheckBox';
this.filterPlaceholder = 'Search countries';
this.valueType = ["AU", "FR"];
this.remoteValue = ["ALFKI", "ANATR"];
} |
<ejs-multiselect id="multiselectelement" [dataSource]="data" [fields]="fields" [query]="query" [placeholder]="placeholder" [(ngModel)]="remoteValue" [showDropDownIcon]="true" [mode]="mode" showSelectAll="true" [filterBarPlaceholder]="filterPlaceholder" (actionComplete)="onActionComplete()"></ejs-multiselect>
...
public onActionComplete() {
this.remoteValue = ["ALFKI", "ANATR"];
}
|