Completed
Last Updated: 28 Nov 2014 07:37 by ADMIN
ADMIN
Dimitar
Created on: 26 Nov 2014 07:35
Category:
Type: Bug Report
0
FIX. RadDropDownList - the item is not changed when the drop down is closed and mouse wheel is used. Ocurrs only when the DropDownStyle is DropDownList
To reproduce:
- Set the DropDownStyle to DropDownList
- Try to change the item with the mouse wheel (the popup should be closed).

Workaround:
void radDropDownList1_MouseWheel(object sender, MouseEventArgs e)
{
    if (e.Delta > 0)
    {
        radDropDownList1.SelectedIndex += 1;
    }
    else
    {
        radDropDownList1.SelectedIndex -= 1;
    }
}
0 comments