Hello,
I have created a multiselect that has default values (coming from the server) in an array that I then add to the kendoMultiSelect object as follows:
$("#subscriptionsWindow").kendoMultiSelect({
dataTextField: "text",
dataValueField: "value",
dataSource: multiData,
filter: "contains",
value: defaults //defaults here is an array of default items
});
I want to prohibit the user from deselecting these values, as they are enforced by the admin but must be shown in the drop down list.
I tried the read only option and that didn't work...
Thanks