Hi Peter, we have just purchased the RadControls for asp.net ajax and I am setting the width property to 100% and the toolbar will not stretch the width of my page, it sets its width to exactly the width of the controls I have in it, but if I set it to 800px as I did here in this code example it will set the toolbar to 800px. Have I missed something?
| <telerik:RadToolBar Style="text-align: Left;" ID="RadToolBar1" runat="server" Skin="Office2007" |
| Width="800px"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| <Items> |
| <telerik:RadToolBarButton runat="server" Text="Add New"> |
| </telerik:RadToolBarButton> |
| <telerik:RadToolBarDropDown runat="server" Text="UIC of Responsiblity"> |
| </telerik:RadToolBarDropDown> |
| <telerik:RadToolBarButton runat="server" Text="Button1" DisplayName="TextBox1"> |
| <ItemTemplate> |
| <input type="text" value='<%# DataBinder.Eval(Container, "Attributes['DisplayName']") %>' /> |
| </ItemTemplate> |
| </telerik:RadToolBarButton> |
| </Items> |
| </telerik:RadToolBar> |