This question is locked. New answers and comments are not allowed.
Hi Telerik team,
Please let us know a way to add hyperlink OR a button into the panel bar Header to the right corner.
* PFA screenshot for more clarity on the requirement.
Please let us know a way to add hyperlink OR a button into the panel bar Header to the right corner.
* PFA screenshot for more clarity on the requirement.
Html.Telerik().PanelBar()
.Name("PanelBar")
.Items(parent =>
{
parent.Add()
.Text(PartnerProfileResources.KeyAccountInformation)
.Content(@<
text
>
<
table
width
=
"100%"
border
=
"0"
cellpadding
=
"8"
cellspacing
=
"0"
>
<
tr
>
<
td
class
=
"table_label_cell"
>
@PartnerProfileResources.PartnerName :
</
td
>
</
tr
>
</
table
>
</
text
>).Expanded(true);
}
)
.Render();