Hi,
Try placing the ToolBar's in an html table as shown below and see if it helps:
aspx:
<table width="240"> |
<tr> |
<td width="50%"> |
<telerik:RadToolBar ID="RadToolBar1" runat="server"> |
<Items> |
<telerik:RadToolBarButton Text="ButtonA"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Text="ButtonB"></telerik:RadToolBarButton> |
</Items> |
</telerik:RadToolBar> |
</td> |
<td width="50%"> |
<telerik:RadToolBar ID="RadToolBar2" runat="server"> |
<Items> |
<telerik:RadToolBarButton Text="ButtonC"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Text="ButtonD"></telerik:RadToolBarButton> |
</Items> |
</telerik:RadToolBar> |
</td> |
</tr> |
</table> |
Thanks
Princy.