Completed
Last Updated: 28 Nov 2017 06:46 by ADMIN
ADMIN
Hristo
Created on: 21 Nov 2017 11:24
Category: RibbonBar
Type: Bug Report
1
FIX. RadRibbbonBar - the Click event of a RadSplitButtonElement added to the ribbon is fired twice
How to reproduce:  subcribe to the Click event handled of a RadSplitButtonElement added to a certain group in RadRibbonBar, notice that when you click on the button the event will fire two times

Workaround: 
bool cancel;
private void radSplitButtonElement1_Click(object sender, EventArgs e)
{
    if (!cancel)
    {
        //Handle Click event;
        this.cancel = true;
        return;
    }

    this.cancel = false;
}
0 comments