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

radtoolbar + radgrid firefox display issue

3 Answers 99 Views
ToolBar
This is a migrated thread and some comments may be shown as answers.
max
Top achievements
Rank 1
max asked on 26 May 2008, 04:33 PM
Hi, if I put a radgrid after a radtoolbar this two remain in the same row with forefox, instead with ie is ok..

code to reproduct my problem:
    <telerik:RadToolBar ID="RadToolBar1" runat="server"
        <Items> 
            <telerik:RadToolBarButton Text="ciao"
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton Text="ciao"
            </telerik:RadToolBarButton> 
            <telerik:RadToolBarButton Text="ciao"
            </telerik:RadToolBarButton> 
        </Items> 
    </telerik:RadToolBar> 
     
    <telerik:RadGrid ID="RadGrid1" runat="server" Width="100%"
        <MasterTableView> 
        </MasterTableView> 
    </telerik:RadGrid> 

    Protected Sub RadGrid1_NeedDataSource(ByVal source As ObjectByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles RadGrid1.NeedDataSource 
        RadGrid1.DataSource = New Object() {"dfsfs""fsdfdas""ghgfh"
    End Sub 

3 Answers, 1 is accepted

Sort by
0
Erjan Gavalji
Telerik team
answered on 27 May 2008, 09:07 AM
Hi massimo,

You can achieve the same behavior by adding the style="clear:left;" attribute to RadGrid, e.g.:
    <telerik:RadGrid ID="RadGrid1" runat="server" Width="100%" style="clear:left;">
        <MasterTableView>
        </MasterTableView>
    </telerik:RadGrid>

Kind regards,
Erjan Gavalji
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
max
Top achievements
Rank 1
answered on 29 May 2008, 04:21 PM
Tthanks,
I'm using a simple <br style="clear:both;" /> after each toolbar..
0
Jake
Top achievements
Rank 1
answered on 19 Mar 2009, 08:38 PM
I spent quite a while on this issue until I came across this post!  Thank you so much!

Google Chrome suffers from the same problem as FireFox.  With the advent of IE 8 on the horizon and it's supposed compliance with standards I imagine it will too.
Tags
ToolBar
Asked by
max
Top achievements
Rank 1
Answers by
Erjan Gavalji
Telerik team
max
Top achievements
Rank 1
Jake
Top achievements
Rank 1
Share this question
or