Rank: Newbie Groups: Member
Joined: 7/26/2011 Posts: 5
|
Hi, I am using two eo.web datepicker controls in my aspx page which are placed next to each other. These datepicker controls show date in mm/dd/yyyy format. When i use TAB to shift the focus to next control, the tab order works properly in below order: datepicker1.mm -> datepicker1.dd -> datepicker1.yyyy -> datepicker2.mm -> datepicker2.dd -> datepicker2.yyyy
But when i use SHIFT+TAB to shift focus to previous controls, its not shifting the focus in proper order. The order is as below: datepicker2.yyyy -> datepicker2.dd -> datepicker2.mm -> datepicker1.mm
As it can be observed from above order, datepicker1.dd and datepicker1.yyyy are not visited when SHIFT+TAB is used.
Please let me know if there is some way to give proper tab index in such case.
Thanks, Samay
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Unfortunately there is no way to work that way. The shift+tab from DatePicker2 to DatePicker1 is handled by the browser because it's a single textbox. So it always triggers a focus event and we always focus the first segment when receiving focus event.
Thanks!
|
Rank: Newbie Groups: Member
Joined: 7/26/2011 Posts: 5
|
Thanks for the reply.
|