Completed
Last Updated: 10 Nov 2015 13:23 by ADMIN
ADMIN
Dimitar
Created on: 04 Jun 2014 11:47
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - when the ribbon is collapsed and a tab is selected with the KeyTips the drop down is not shown.
To reproduce:
- Add a tab to a RadRibbonForm form.
- Collapse the ribbon and press the Alt key to show the KeyTips.
- Select a tab by pressing the corresponding key.
- You will notice that the tab is not expanded.

Workaround:
void radRibbonBar1_KeyTipActivating(object sender, CancelEventArgs e)
{
    keyExpanded = true;
}

void radRibbonBar1_Click(object sender, EventArgs e)
{
    keyExpanded = false;
}

bool keyExpanded = false;

void radRibbonBar1_CommandTabSelected(object sender, Telerik.WinControls.UI.CommandTabEventArgs args)
{
    if (!radRibbonBar1.Expanded && keyExpanded)
    {
        radRibbonBar1.Expanded = true;
    }
}
0 comments