Posted
on Nov 22, 2011
(permalink)
Hello,
I am programatically trying to add an arbitrary number of checkboxes (RadCheckBoxElements) to a Vertically aligned ButtonGroup in a RibbonBar. The problem I encounter, is when the number of Elements exceeds three/four, the elements appear 'behind' the edge of the ribbonbar: the list of elements is not continued in an imaginary adjacent column, if you will. In a textual representation, this is what I have now:
===Bar===
[ ] CheckBox1
[ ] CheckBox2
[ ] CheckBox3
===Bar===
[ ] CheckBoxn (appears partly or wholly below bar edge)
What I want to achieve is:
===Bar===
[ ] CheckBox1 [ ] CheckBox4
[ ] CheckBox2 [ ] CheckBoxn
[ ] CheckBox3
===Bar===
Could you help me with this? Thanks in advance!