我正在使用kendoUI面板栏。 在侧面板栏中,我正在显示网格。 因为我已经实现了,
$.ajax({
type: "POST",
url: '/Home/GetPanelInfo',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (json) {
var dataSource = $.map(json, function(obj){
return {
text: obj.groups_name,
expand: true,
contentUrl: "/Grid/Index"
};
});
$("#panelBar").kendoPanelBar({
expandMode: "single",
id: "usr_id",
dataSource: dataSource
});
}
});
如果我这样实现,第一次当我选择任何标题时,我能够显示网格内容,然后如果我选择任何标题,则内容不显示。这是一个错误吗?