Hello Team,
I have recently purchased the Metronic Angular theme (version v8.1.8, Demo1). I am currently integrating a multiselect dropdown component in my Angular application. However, I could not find any existing implementation or example of a multiselect dropdown in the provided theme components or documentation.
Could you please confirm whether a multiselect dropdown component is available in this version of the theme? If it's not included by default, could you recommend the best way to integrate one that aligns well with the Metronic UI/UX guidelines?
Thank you for your assistance.
Hi Sandip D
Metronic Angular v8.1.8 does not include a pre-built multiselect dropdown component. However, you have options to integrate one that aligns with Metronic's UI
Recommended Approach - Using ng-select:
Install ng-select: npm install @ng-select/ng-select
Import in your module:
import { NgSelectModule } from "@ng-select/ng-select";
@NgModule({
imports: [NgSelectModule, FormsModule]
})
<ng-select [items]="items"
bindLabel="name"
bindValue="id"
[multiple]="true"
[(ngModel)]="selectedItems">
</ng-select>
npm install ng-multiselect-dropdown