This question is locked. New answers and comments are not allowed.
@{ Html.Telerik().PanelBar()
.Name(
"pnlContactReportContacted3")
.ExpandMode(
PanelBarExpandMode.Single)
.HtmlAttributes(
new { style = "width: 100%; float: left;" })
.SelectedIndex(0)
.Items(t =>
{
t.Add().Text(
"DESCRIPTION OF CONTACT :")
.Content(@<text>
@Html.TextAreaFor(p => p.ContactDescription, !isEnabled ? (
object)new { style = "width:99%; height:1px; ", @readonly = "readonly" } : new { style = "width:99%;height:1px;" })
</text>).Enabled(
true);
}).Render();}
This is my Code. the panal bar does not collapse. Please help