// Define data-source for panel-bar header items
$.ajax({
type: "Get",
url: 'api/Customers/GetAllCustomers',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (json) {
var dataSource1 = $.map(json.Customer, function (obj) {
return {
text: obj.CustomerName,
expand: false,
};
});
debugger;
$("#panelBar").kendoPanelBar({
expandMode: "single",
dataSource: kendo.stringify(dataSource1)
});
}
});
数据源未绑定到面板栏,我正在获得结果并且它会成功,但这不会显示在屏幕上
答案 0 :(得分:0)
你能分享AJAX电话的回复吗?此外,不需要kendo.stringify,因为dataSource需要数组而不是字符串。