Hello,
I'm slowly refactoring my RadRibbonBar into a RadRibbonView and noticed that my variants didn't seem to be working... All my groups were showing up in the collapsed state. Eventually I discovered that by reversing the priorities, things started to work...
I had several RadRibbonGroups with priorities like this - in this scenario, as the screen width was decreased, GroupB would collapse first, and then GroupA.
To replicate this behavior with the RadRibbonView, I need priorities like this:
Am I crazy here or has this actually changed?
I'm slowly refactoring my RadRibbonBar into a RadRibbonView and noticed that my variants didn't seem to be working... All my groups were showing up in the collapsed state. Eventually I discovered that by reversing the priorities, things started to work...
I had several RadRibbonGroups with priorities like this - in this scenario, as the screen width was decreased, GroupB would collapse first, and then GroupA.
<
telerik:RadRibbonGroup
Header
=
"GroupA"
>
<
telerik:RadRibbonGroup.Variants
>
<
telerik:GroupVariant
Variant
=
"Large"
Priority
=
"1"
/>
<
telerik:GroupVariant
Variant
=
"Collapsed"
Priority
=
"11"
/>
</
telerik:RadRibbonGroup.Variants
>
...
</
telerik:RadRibbonGroup
>
<
telerik:RadRibbonGroup
Header
=
"GroupB"
>
<
telerik:RadRibbonGroup.Variants
>
<
telerik:GroupVariant
Variant
=
"Large"
Priority
=
"2"
/>
<
telerik:GroupVariant
Variant
=
"Collapsed"
Priority
=
"12"
/>
</
telerik:RadRibbonGroup.Variants
>
...
</
telerik:RadRibbonGroup
>
To replicate this behavior with the RadRibbonView, I need priorities like this:
<
telerik:RadRibbonGroup
Header
=
"GroupA"
>
<
telerik:RadRibbonGroup.Variants
>
<
telerik:GroupVariant
Variant
=
"Large"
Priority
=
"11"
/>
<
telerik:GroupVariant
Variant
=
"Collapsed"
Priority
=
"1"
/>
</
telerik:RadRibbonGroup.Variants
>
...
</
telerik:RadRibbonGroup
>
<
telerik:RadRibbonGroup
Header
=
"GroupB"
>
<
telerik:RadRibbonGroup.Variants
>
<
telerik:GroupVariant
Variant
=
"Large"
Priority
=
"12"
/>
<
telerik:GroupVariant
Variant
=
"Collapsed"
Priority
=
"2"
/>
</
telerik:RadRibbonGroup.Variants
>
...
</
telerik:RadRibbonGroup
>
Am I crazy here or has this actually changed?