RadPanelBar for ASP.NET

Separators Send comments on this topic.
Feature overview > Separators

Glossary Item Box

The panelbar layout can be further customized through separators. They are used for grouping the  items into two or more categories. Sometimes, they are also used for achieving cosmetic effects.

You can set a root or a child panelbar item as a separator using the IsSeparator property. You can then define its size using the Width property. The Text property value will still be rendered, but the item will not be clickable.  

The screen shot below shows a panelbar where the "Navigational Controls" item is set as an item separator.

IsSeparator

  Copy Code
<rad:RadPanelItem AccessKey="c" Expanded="True" Text="ASP.NET controls">
   
<Items>
       
<rad:RadPanelItem Text="Telerik RadEditor" />
       
<rad:RadPanelItem Text="Telerik RadAjax" />
       
<rad:RadPanelItem Text="Telerik RadCalendar" />
       
<rad:RadPanelItem Text="Telerik RadGrid" />
       
<rad:RadPanelItem Text="Navigational Controls" IsSeparator="True" />
       
<rad:RadPanelItem Text="Telerik RadPanelBar" />
       
<rad:RadPanelItem Text="Telerik RadTabStrip" />
       
<rad:RadPanelItem Text="Telerik RadPanelBar" />
       
<rad:RadPanelItem Text="Telerik RadTreeView" />
    
</Items>
</
rad:RadPanelItem>