This is a migrated thread and some comments may be shown as answers.

RadDropDownList problem with proccesskeypreview

0 Answers 52 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 11 Mar 2014, 01:41 PM
I used following code to change the tab order by pressing Enter key , and it works great on any objects of my form.But when I changed the AutoCompleteMode property of my RadDropDownList to "SuggestAppend" , then
when I press Enter on RaddropDown the tab order not changed and it stay on this control !!!! plz help to handle this problem.

 protected override bool ProcessKeyPreview(ref Message m)
        {
            if (m.Msg == 0x0100 && (int)m.WParam == 13)
            {
                this.ProcessTabKey(true);
            }

No answers yet. Maybe you can help?

Tags
DropDownList
Asked by
David
Top achievements
Rank 1
Share this question
or