-
TAB TO PREVIOUS
I am trying to accommodate a request that users would like to utilize a (shift + tab) combination to move to the previous control or field on the form.
Does anyone have any examples on how to handle this.
The only thing I can come up with is holding a variable through out the scope of the form. Each object will need a keypress event to see if the shift key is followed by the tab key.... Let me know if there is something easier.
-
Re: TAB TO PREVIOUS
If you set the tabindex of your controls up properly then this will work by default
-
Re: TAB TO PREVIOUS
Thanks I found the Shift + Tab does this. I was trying Ctrl + Tab