RadPanelBar for ASP.NET

Defining the Structure Programmatically Send comments on this topic.
See Also
Defining the Telerik RadPanelBar structure > Defining the Structure Programmatically

Glossary Item Box

Using the server-side API, you can programmatically add, remove, and edit items in Telerik RadPanelBar:

C# Copy Code
RadPanelItem dateItem = new RadPanelItem();
dateItem.Text =
"Current Date";
dateItem.CssClass =
"MainItem";
dateItem.Expanded = true;
RadPanelBar1.Items.Add(dateItem);
VB.NET Copy Code
Dim dateItem As New RadPanelItem()
dateItem.Text = "Current Date"
dateItem.CssClass = "MainItem"
dateItem.Expanded = True
RadPanelBar1.Items.Add(dateItem)

See Also