i have a problem when use combo multi-select with AngularJS. I dont know how to add multi-selection= { enabled="true" }to ig-combo
I think maybe use : <multi-selection enable="true"></multi-selection> but no result. Please help me thanks all
Hello Steven Vo,
You can enable multiple selection in IgCombo options.
<!-- app.component.html --> <ig-combo id="'combo1'" [(options)]="options" .... > </ig-combo>
// app.component.ts export class AppComponent { public options: IgCombo; // .... constructor() { // .... this.options = { // .... multiSelection: { enabled: true, }, // .... }; } }
Here is a sample application which uses the above codes.
0636.f121266-app2.zip