Hi,
I am trying to put a RibbonBar inside a table cell. The reason for this is that
I want to put things to the right of the ribbonbar.
When I run the page the RibbonBar is not sized correctly. It is too small and
all buttons is not visible.
I can not set any width in pixels, the content is dynamic.
Does anyone know if it is possible to put a ribbonbar inside a table cell?
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td > <telerik:RadRibbonBar ID="RadRibbonBar1" runat="server" Skin="Office2007"> <telerik:RibbonBarTab Text="Home"> <telerik:RibbonBarGroup > <Items> <telerik:RibbonBarButton Size="Medium" Text="Cut" /> <telerik:RibbonBarButton Size="Medium" Text="Copy" /> </Items> </telerik:RibbonBarGroup> <telerik:RibbonBarGroup > <Items> <telerik:RibbonBarButton Size="Medium" Text="Cut" /> <telerik:RibbonBarButton Size="Medium" Text="Copy" /> </Items> </telerik:RibbonBarGroup> <telerik:RibbonBarGroup > <Items> <telerik:RibbonBarButton Size="Medium" Text="Cut" /> <telerik:RibbonBarButton Size="Medium" Text="Copy" /> </Items> </telerik:RibbonBarGroup> <telerik:RibbonBarGroup > <Items> <telerik:RibbonBarButton Size="Medium" Text="Cut" /> <telerik:RibbonBarButton Size="Medium" Text="Copy" /> </Items> </telerik:RibbonBarGroup> <telerik:RibbonBarGroup > <Items> <telerik:RibbonBarButton Size="Medium" Text="Cut" /> <telerik:RibbonBarButton Size="Medium" Text="Copy" /> </Items> </telerik:RibbonBarGroup> </telerik:RibbonBarTab> </telerik:RadRibbonBar> </td> <td style="background: red;"> Right cell </td> </tr> </table>