Add array of items into kendo ui multi select

Add array of items into kendo ui multi select

//This is used to add the data source items.
$('#mlConsEmails').data("kendoMultiSelect").dataSource.add({ UserId: "EMP100XYZ",     EmailId: "test@gmail.com" });

    OR

var multi = $('#mlConsEmails').data('kendoMultiSelect');

//This is used for get the old values from multi select kendo
var values = multi.value().slice(); 

//This is used for merge values in values object.
$.merge(values, "test22@gmail.com");
multi.value(values);

//This is used to refresh multi select kendo 
multi.refresh();
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Add array of items into kendo ui multi select Add array of items into kendo ui multi select Reviewed by Anil Singh on 3:17 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^