I am using KendoUi for my project. i created local wcf service and it works well. i tested on the browser and it gives jsondata. but i cannot fetch the data to the aspx page in combobox.
my javascript code for the kendocombobox is below. please help me as soon as possible. please use localhost in place of www.google.com
var ds = new kendo.data.DataSource({ transport: { type: "json", read: { url: "http://www.google.com:2608/Service1.svc/getAllProducts" } }, aggregate: [{ field: "ProductID", aggregate: "sum"}] });
$("#regBody").kendoComboBox({
placeholder: "Select Product",
dataTextField: "ProductName",
dataValueField: "ProductID",
dataSource: ds
}).data("kendoComboBox");