Hi all
I am trying to load some remote data (web api) to combobox at fiddler i can see that the data return but the widget does not showing anything.
var dataSource = new kendo.data.DataSource({
transport: {
read: {
dataType: "jsonp",
url: `My URL`,
data: {
name: "product"
}
}
}
});
$("#crmAttributes").kendoComboBox({
dataTextField: "DisplayName",
dataValueField: "Myvalue",
dataSource: dataSource.read()
}).data("kendoComboBox").open();
I am working on rtl...
thanks for your help :)