I want to select multiple values from the dropdown. Currently, I am using KendoDropdown.
My code looks like below, This is Html code:
<div class="col-sm-6">
<label class="col-sm-4 control-label">Shared With:</label>
<input id="dropdownCName" style="width:40%" data-placeholder="Name">
</div>
And This is Javascript code:
$("#dropdownCName").kendoDropDownList({
dataTextField: "Name",
dataValueField: "ID",
dataSource: {
transport: {
read: {
url: "<%=ConfigurationManager.AppSettings["abc"]%>getuserpother/?customer_id=<%= com.VirtuosoITech.ComplianceManagement.Portal.Common.AuthenticationHelper.CustomerID %>",
}
}
}
});
And here is the browser snapshot:- Snapshot
Is there any attribute for kendo to be placed inside the code or any way to do that?