ng-multiselect-dropdown icon indicating copy to clipboard operation
ng-multiselect-dropdown copied to clipboard

I need a method for close of dropdown

Open fmandres92 opened this issue 5 years ago • 1 comments

Please you can add a method for close the dropdown. Now it stay open

fmandres92 avatar Nov 08 '18 15:11 fmandres92

For anyone needing to solve something like this, you can use:

<ng-multiselect-dropdown 
   #programDropdown
   ....
</ng-multiselect-dropdown>

And in the component you can define the child and then use the function 'closeDropdown' where you need it

@ViewChild('programDropdown') programDropdown;
....
this.programDropdown.closeDropdown();

pmarconi avatar Apr 13 '21 05:04 pmarconi