I have a multi-touch input kendo UI. I populate the values ββwith a JSON object. I want the first value to be selected. Based on the documents I gave below, but the value is still not selected.
$("#days").kendoMultiSelect({ dataTextField: "text", dataValueField: "value", dataSource: days, filter: "contains", value: [ { text: "First", value: "1" }, ] }); var days = [ { text: "First", value: "1" }, { text: "Second", value: "2" }, { text: "Third", value: "3" }, { text: "Fourth", value: "4" }, { text: "Fifth", value: "5" } ];
source share