I have a RadRibbonBar inside a CommandItemTemplate of a RadGrid. The bar items are RibbonBarTemplateItem. I'm trying reduce the height of the RibbonBarGroup to the size of the controls it contains - the 'Height' property on the group doesn't reduce the height. The RibbonBarGroup appears to be a fixed height - 3 rows in height. How do I reduce the size of the group?
The RibbonBarTemplateItem contains a <table> with one row.
Here's the first group:
Jerry
The RibbonBarTemplateItem contains a <table> with one row.
Here's the first group:
<CommandItemTemplate> <div> <telerik:RadRibbonBar ID="_ribbonBarComputers" runat="server"> <telerik:RibbonBarTab Text="Computer" > <telerik:RibbonBarGroup Text="Add/Update" > <Items> <telerik:RibbonBarTemplateItem Size="Small"> <table> <tr> <td> <telerik:RadTextBox ID="_ctrlAltirisText" runat="server" Width="300px" EmptyMessage="Paste Altiris text"> </telerik:RadTextBox> </td> <td> <telerik:RadButton ID="_btn_AddComputer" runat="server" Text="Add" CommandName="AddComputer"> </telerik:RadButton> </td> <td> <telerik:RadButton ID="_btn_ReplaceComputer" runat="server" Text="Replace" CommandName="ReplaceComputer"> </telerik:RadButton> </td> <td> <telerik:RadButton ID="_btn_CloseComputer" runat="server" Text="Close" CommandName="CloseComputer"> </telerik:RadButton> </td> </tr> </table> </telerik:RibbonBarTemplateItem> </Items> </telerik:RibbonBarGroup>Jerry