This is a migrated thread and some comments may be shown as answers.

add a space between two toolbar buttons

1 Answer 169 Views
ToolBar
This is a migrated thread and some comments may be shown as answers.
Sigma
Top achievements
Rank 1
Sigma asked on 14 Jan 2013, 11:38 AM
 How to add a space between two toolbar buttons as a separator between them?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 14 Jan 2013, 11:47 AM
Hi,

One suggestion is that you can add an IsSeparator as shown below.

ASPX:
<telerik:RadToolBar ID="RadToolBar1" runat="server">
     <Items>
           <telerik:RadToolBarButton Text="RadToolBarButton1">
           </telerik:RadToolBarButton>
           <telerik:RadToolBarButton IsSeparator="true" Width="100px">
           </telerik:RadToolBarButton>
           <telerik:RadToolBarButton Text="RadToolBarButton2">
           </telerik:RadToolBarButton>
     </Items>
</telerik:RadToolBar>

Hope this helps.

Regards,
Princy.
Tags
ToolBar
Asked by
Sigma
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or