Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Why does the tabindex not work in an update panel? When the updatepanel partially postabcks (e.g. I have a dropdownlist that autopostbacks in the updatepanel) the tab index is broken the the tab key doesnt tab you onto the next control.

and tabindex wil goto first tabindex how to solve

thankx
Posted
Updated 29-Mar-15 18:05pm
v2

DropDownList comboboxcountry= (DropDownList)this.FindControl("comboboxcountry");
ScriptManager1.SetFocus(comboboxcountry);

write the above code in selecte index changed where autopost back is true
 
Share this answer
 
v2
DropDownList comboboxcountry= (DropDownList)this.FindControl("comboboxcountry");
ScriptManager1.SetFocus(comboboxcountry);

write the above code in selecte index changed where autopost back is true
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900