This is a migrated thread and some comments may be shown as answers.

Telerik Ribbon bar - display customization

1 Answer 57 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Deepika
Top achievements
Rank 1
Deepika asked on 26 Jul 2012, 08:50 AM
Hi,
I have a screen in that I have Ribbonbars. I have 4 Ribbon Bar Tabs , each ribbon bar tab has 4 ribbon bar groups and each ribbbon bar group has 4 buttons.
My problem is I ahve the ribbon bar width as 100%. But these controls do not occupy the complete width. They look very clumsy.
Is there a way to adjust each Ribbon bar tab items to take up some extra space?
Thanks

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 27 Jul 2012, 05:51 AM
Hi Deepika,

I am not quite sure about your requirement,f you want your TabItems to take up some extra space you could easily give the Width property to the RadTab
aspx:
<telerik:RibbonBarTab Text="1" Width="25%">
or else you want your RibbonBarGroup items to have specified width.
Try the following CSS: 
<style type="text/css">
 .rrbButtonGroup
  {
    width:25% !important;
  }
 .rrbButtonAreaIn
  {
    width:100% !important;
  }
</style>

Thanks,
Princy.
Tags
RibbonBar
Asked by
Deepika
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or