Completed
Last Updated: 11 Feb 2014 16:05 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 31 Oct 2013 03:48
Category:
Type: Bug Report
2
FIX. RadDropDownList - TabStop property is not taken into consideration
To reproduce: 
Add two buttons and a RadDropDownList, cycle with the tab key, set the tabstop property of RadDropDownList, you will notice that the behavior has not changed.

Workaround:
Use the TabStopProperty of the hosted TextBoxControl:

this.radDropDownList1.DropDownListElement.TextBox.TextBoxItem.TextBoxControl.TabStop = false;
0 comments