I want to pull all data of a kendo dropdown list. I create dropdown with this code:
$("#dropDownList").kendoDropDownList({
dataTextField: "field",
autoBind: true,
dataSource: {
transport: {
type: "POST",
read: {
url: "http://abc.com",
contentType: "application/json; charset=utf-8",
dataType: "json"
}
}
},
select: onSelect
});
};
Then I tried to pull data with using
var data = $("#dropDownList").data("kendoDropDownList").val();
var values = [];
for (var item in data) {
values.push(this.item);
}
But it didn't work. Any idea how can I do? Thanks in advance.
Try this it will retrive all values from Kendo dropdown.
Can you try :
Try this.
If you want the actual DataItems from the DDL you can get them by Viewing the DataSource:
You can then also find individual items easily by id if you need to: