Per the documentation a RadToolBarButton with IsSeparator="true" does not render in a RadToolBar.
http://www.telerik.com/help/aspnet-ajax/toolbar-appearance-separators.html
However, we have a RadToolBarDropDown that is inside a RadToolBar. The separator buttons that are inside the nested RadToolBarDropDown also do not render...
What is the suggested workaround?
http://www.telerik.com/help/aspnet-ajax/toolbar-appearance-separators.html
However, we have a RadToolBarDropDown that is inside a RadToolBar. The separator buttons that are inside the nested RadToolBarDropDown also do not render...
What is the suggested workaround?
<telerik:RadToolBar ID="RadToolBar1" runat="server"> <Items> <telerik:RadToolBarButton Text="Button A" /> <telerik:RadToolBarButton Text="Button B" /> <telerik:RadToolBarDropDown Text="DropDown"> <Buttons> <telerik:RadToolBarButton Text="Button C"></telerik:RadToolBarButton> <telerik:RadToolBarButton IsSeparator="true"></telerik:RadToolBarButton> <telerik:RadToolBarButton Text="Button D"></telerik:RadToolBarButton> </Buttons> </telerik:RadToolBarDropDown> </Items></telerik:RadToolBar>