We need to expand the items for one level as default by page load .
We have the following code snippet in order to expand the first item when page loads in C#:
protected void RadPanelBar1_DataBound(object sender, EventArgs e)
{
RadPanelBar1.Items[0].Expanded = true;
}
Please can you give equivalent javascript code for this source.
Thanks