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:
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 Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles RadGrid1.NeedDataSource |
RadGrid1.DataSource = New Object() {"dfsfs", "fsdfdas", "ghgfh"} |
End Sub |