Hi Prangya,
Thanks for using Syncfusion EJ2 components
We have checked your requirement for refresh() the control in removed event. Multiselect component removed event fired while removed the each and every selected item. Please let us know which scenario you have used this case and same way to take the instance and refresh the control.
|
App.ts
import { Component, ViewChild } from '@angular/core';
import { MultiSelectComponent,SelectEventArgs } from '@syncfusion/ej2-ng-dropdowns';
export class AppComponent {
@ViewChild('sample')
public multiObj: MultiSelectComponent;
public closeNav():void{
this.multiObj.refresh(false);
}
}
|
Please let us know if you have any concern, we will happy to assist you.
Regards,
Gopi G.