RadToolBar for ASP.NET

Integration of Telerik RadToolBar with Telerik RadDock Send comments on this topic.
Interoperability with other controls > Integration of Telerik RadToolBar with Telerik RadDock

Glossary Item Box

Telerik RadToolBar can be integrated with Telerik RadDock using its Content Templates. All you have to do is drag the toolbar to an instance of RadDockableObject of Telerik RadDock and drop it upon this instance. You can also add it declaratively in the [aspx/ascx] file. For more information about dealing with Content Templates of Telerik RadDock refer to corresponding documentation for this control.

Example

  Copy Code
<raddk:raddockableobject id="RadDockableObject1" style="LEFT: 640px; POSITION: absolute; TOP: 250px" runat="server" Behavior="None" DockedObjectEnabledGrips="Auto" FloatingObjectEnabledGrips="Auto" Text="toolbar" Width=1 Height=1>
  
<contenttemplate>
  
<rad:radtoolbar DisplayEnds="false" id="toolbar1" runat="server" ContentFile="test.xml" autopostback="False">
            
<items>
            
<rad:radtoolbarbutton AccessKey="P" ButtonImage="print.gif" CommandName="print" DisplayType="ImageOnly" ButtonText=""></rad:radtoolbarbutton>
            
<rad:radtoolbarbutton AccessKey="s" ButtonImage="save.gif" CommandName="save" DisplayType="ImageOnly" ButtonText=""></rad:radtoolbarbutton>
            
<rad:radtoolbarbutton AccessKey="n" ButtonImage="new.gif" CommandName="new" DisplayType="ImageOnly" ButtonText=""></rad:radtoolbarbutton>
            
</items>
       
</rad:radtoolbar>
   
</contenttemplate>
</
raddk:raddockableobject>