Need More Info
Last Updated: 05 Feb 2024 08:45 by ADMIN
Deepankar
Created on: 29 Jan 2024 09:35
Category: PanelBar
Type: Bug Report
0
Kendo PanelBar not expanding on client side, if not set expanded to true on page load

I have created this basic panelbar, in which expandall is set to false and one of the panelbars (i.e., General Info) is set to be expanded by default.

The problem is now with the second panelbar (Advanced Info), which is collapsed by default, but is not able to expand even after trying.

All that's  changing is expand and collapse arrow.

The same was working properly in earlier versions.

Hoping for your earliest response.

     @(Html.Kendo().PanelBar()
             .Name("Panelbar").Events(e => e.Error("onError").Expand("OnExpand").Collapse("OnCollapse"))
             .ExpandAll(false)
             .Items(panelbar =>
             {
                 panelbar.Add().Text("General Info")
             .Expanded(true)
             .Content(@<div class="container" style="margin:1%;width:auto"><p>HI</p></div>);
                 panelbar.Add().Text("Advanced Info")
             .Content(@<div class="container" style="margin:1%;width:auto"><p>HI</p></div>);  
             })
         )
 </div>

1 comment
ADMIN
Ivan Danchev
Posted on: 05 Feb 2024 08:45

Hello Deepankar,

I've tested the scenario using the PanelBar configuration you posted and I am able to expand the second item as expected. See the attached screenshot. A sample project is also attached.

Let me know in case I am missing something with regard to reproducing the issue.

Regards,
Ivan Danchev
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages. If you're new to the Telerik family, be sure to check out our getting started resources, as well as the only REPL playground for creating, saving, running, and sharing server-side code.