I am trying to add a ribbon bar group with one large button and two large templates.
My problem is that the templates items always seem to flow vertically like medium sized items, how do i define the template items to render like "large" buttons ??
I have tried with and without the width on the group, with and without Size on the template item, but nothing seems to work...
My problem is that the templates items always seem to flow vertically like medium sized items, how do i define the template items to render like "large" buttons ??
<
telerik:RibbonBarGroup
Text
=
"Timecard"
Width
=
"160px"
>
<
Items
>
<
telerik:RibbonBarButton
Size
=
"Large"
Text
=
"Add Entry"
ImageUrl
=
"~/images/ribbonbaricons/upload.png"
/>
<
telerik:RibbonBarTemplateItem
Size
=
"Large"
>
<
div
style
=
"border: solid 1px blue; height: 66px; width: 50px;"
>
</
div
>
</
telerik:RibbonBarTemplateItem
>
<
telerik:RibbonBarTemplateItem
Size
=
"Large"
>
<
div
style
=
"border: solid 1px blue; height: 66px; width: 50px;"
>
</
div
>
</
telerik:RibbonBarTemplateItem
>
</
Items
>
</
telerik:RibbonBarGroup
>
I have tried with and without the width on the group, with and without Size on the template item, but nothing seems to work...