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

RadToolbar Alignment

1 Answer 340 Views
ToolBar
This is a migrated thread and some comments may be shown as answers.
Seth
Top achievements
Rank 1
Seth asked on 17 Apr 2008, 08:32 PM
This was fine in the Q3 release of the toolkit:

        <telerik:RadSplitter ID="rsMain" runat="server" Orientation="Horizontal" Width="100%" Height="100%" Skin="Vista">  
            <telerik:RadPane ID="rpToolbar" runat="server" Scrolling="None" Width="100%" Height="30">  
                <center> 
                <table border="0" cellpadding="0" cellspacing="0" width="100%">  
                    <tr> 
                        <td align="right">  
                            <telerik:RadToolbar ID="rtTools" runat="server" Skin="Vista" OnClientButtonClicked="onMainToolbarClientClicked" Width="100%">  
                                <Items> 
                                    <telerik:RadToolbarButton runat="server" Text="Search" Value="Search" ImageUrl="images/find.gif" Visible="True"/>  
                                    <telerik:RadToolbarButton runat="server" Text="Administrative Tools" Value="Admin" Visible="True" /> 
                                    <telerik:RadToolbarButton runat="server" Text="Administrative Auditing" Value="AdminAudit" Visible="True"/>  
                                </Items> 
                            </telerik:RadToolbar> 
                        </td> 
                    </tr> 
                </table> 
                </center> 
            </telerik:RadPane> 
 

This would align the toolbar on the right hand side of the window.  This no longer works.  The toolbar is aligned on the left.

Please advise.

1 Answer, 1 is accepted

Sort by
0
Shaun Peet
Top achievements
Rank 2
answered on 18 Apr 2008, 12:27 AM
Try this:

<telerik:radtoolbar runat="server" id="RadToolBar1" style="float:right;">  
</telerik:radtoolbar> 

That will put your toolbar on the right for sure; you may have to make other adjustments to your layout.
Tags
ToolBar
Asked by
Seth
Top achievements
Rank 1
Answers by
Shaun Peet
Top achievements
Rank 2
Share this question
or