Posted 06 Sep 2012 Link to this post
<
telerik:RadPanelBar
ID
=
"RadPanelBar1"
runat
"server"
>
Items
telerik:RadPanelItem
Text
"RadPanelItem1"
................
</
"RadPanelItem2"
Expanded
"true"
"RadPanelItem3"
Posted 07 Sep 2012 Link to this post
RadPanelBar1.Items[1].Expanded =
true
;
Posted 09 Sep 2012 Link to this post
protected
void
RadPanelBar1_DataBound(
object
sender, EventArgs e)
{
foreach
(RadPanelItem myItem
in
(((RadPanelBar)sender).Items))
myItem.Expanded =
}
Posted 10 Sep 2012 Link to this post
(RadPanelBar1.Items))
myItem.PreventCollapse =