This question is locked. New answers and comments are not allowed.
Hello,
Say, if I have a panelbar with two sections, like "Part A" and "Part B" in the codes below:
How can I hide "Part A" using Javascript.
In the Javascript sample, I see "Collapse" and "Disable".
Can we completely hide the "Part A" section?
If not, any workaround? And any future plan to add this as a new feature?
Many thanks.
Say, if I have a panelbar with two sections, like "Part A" and "Part B" in the codes below:
<% Html.Telerik().PanelBar() .Name("PanelBar") .Items( parent => { parent.Add() .Text("Part A") .Content(() => { %> ** Part A contents ** <% }).Expanded(true); parent.Add() .Text("Part B") .Content(() => { %> ** Part B contents ** <% }).Expanded(true);}).Render(); %>How can I hide "Part A" using Javascript.
In the Javascript sample, I see "Collapse" and "Disable".
Can we completely hide the "Part A" section?
If not, any workaround? And any future plan to add this as a new feature?
Many thanks.
