panel bar content is not displaying properly

Epimbestknow

New Member
I am using kendoUI panelbar.In side panel bar I am displaying grid.for that I have implemented like,\[code\]$.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 }); }});\[/code\]If i implement like this,First time when i select on any header, I am able to display the grid content,and next if I select any header the content is not displaying.Is it a bug?
 
Back
Top