Hi I have a toolbar work just fine in an aspx page. I want to do the same on a user control. So I copied and pasted my radtoolbar to a user control but for some reason, the bar only stretches up to the last button. I tried style="width:100%" and Width="100%", none worked. I tried to read the Telerik CSS article but not very helpful in my situation. Can someone please tell me why it's doing that?
My line of code in user control:
My line of code in user control:
| <telerik:RadToolBar ID="RadToolBar1" runat="server" Skin="Vista" style="display:block; float:none" Width="100%"> |
| <Items> |
| <telerik:RadToolBarButton runat="server" ImageUrl="~/Style/Images/alarm1.gif" CommandName="cmd1" /> |
| <telerik:RadToolBarButton runat="server" ImageUrl="~/Style/Images/alarm2.gif" CommandName="cmd2"/> |
| </Items> |
| </telerik:RadToolBar> |