Unplanned
Last Updated: 30 Mar 2016 14:29 by ADMIN
ADMIN
Nikolay
Created on: 15 Apr 2010 10:40
Category: Buttons
Type: Bug Report
2
FIX. RadSplitButton - does not get a focus rectangle when it is focused with the Tab key
RadSplitButton does not get a focus rectangle when focus by the Tab key. One should first click the action part and then the focus rectangle will appear..

The current workaround is:
public class MyRadSplitButton : RadSplitButton 
{ 
    protected override void OnEnter(EventArgs e) 
    { 
        base.OnEnter(e); 
  
        this.DropDownButtonElement.ActionButton.Focus(); 
    } 
}
0 comments