Hi,
When i set the width of the toolbar button in percentage, firefox(v3.5.3) will not be able to display correctly. Any solution?
| <CommandItemTemplate> |
| <telerik:RadToolBar ID="RadToolBar1" runat="server" CausesValidation="False" Skin="Sunset" |
| OnClientButtonClicking="OnClientButtonClicking" AutoPostBack="True" |
| style="display:block; float: none"> |
| <Items> |
| <telerik:RadToolBarButton runat="server" Text="Add New" |
| CommandName="AddNew" Width="20%"> |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarButton runat="server" Text="Delete" |
| CommandName="DeleteFile" Width="20%"> |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarButton runat="server" Text="Refresh" |
| CommandName="Refresh" Width="20%" > |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarButton runat="server" Text="AutoRefresh OFF" |
| CommandName="Autorefresh" AllowSelfUnCheck="True" CheckOnClick="True" Width="20%"> |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarDropDown runat="server" Text="Filter Files" > |
| <Buttons> |
| <telerik:RadToolBarButton runat="server" Text="All Files" CommandName="FilterAllFile" Width="20%"> |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarButton runat="server" Text="Ready Files" CommandName="FilterReadyFile"> |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarButton runat="server" Text="Error Files" CommandName="FilterErrorFile"> |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarButton runat="server" Text="Processing Files" CommandName="FilterProcessingFile"> |
| </telerik:RadToolBarButton> |
| </Buttons> |
| </telerik:RadToolBarDropDown> |
| </Items> |
| </telerik:RadToolBar> |
| </CommandItemTemplate> |