Skip to main content

Posts

Showing posts with the label Angular 4 and 5 MultiSelect Kendo UI

Angular 4 and 5 MultiSelect Kendo UI

The Kendo MultiSelect is a form component and used to displays a collection/list of options which allows selecting the multiple options from the collection or list. For the detail, you can see the below examples with events and so on. Examples – Components Class - //app/app.component.ts import { Component } from '@angular/core' ; @ Component ({   selector: 'my-app' ,   template: `     <div class="wrapper">       <p>User List - </p>       <kendo-multiselect [data]="users" [(ngModel)]="value"></kendo-multiselect>     </div>     <div class="config">          Selected Users - {{value | json}}     </div>   ` }) export class AppComponent {     public users : Array < string > = [ 'Anil Singh' , 'Sunil Singh' ...