|
Home > Archive > IIS ASP > June 2004 > focus/tab question
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
focus/tab question
|
|
| yabba 2004-06-26, 10:19 am |
| I am building an asp form with various elements...
<td tabindex=[x]>blablabla</td>
Where the [x] is the order I want, so far so good and using the tab key
provides the desired results however...
When I *click* on one of the elements the tab order is not updated and so the
next tab key jumps to wherever tabbing left off.
Is there a way to use onfocus() or something to update the tab order so the
next tab will focus on the next element after the *clicked* element?
Thanx for any help
| |
| Evertjan. 2004-06-26, 10:19 am |
| yabba wrote on 25 jun 2004 in microsoft.public.inetserver.asp.general:
> I am building an asp form with various elements...
>
> <td tabindex=[x]>blablabla</td>
>
> Where the [x] is the order I want, so far so good and using the tab
> key provides the desired results however...
>
> When I *click* on one of the elements the tab order is not updated and
> so the next tab key jumps to wherever tabbing left off.
>
> Is there a way to use onfocus() or something to update the tab order
> so the next tab will focus on the next element after the *clicked*
> element?
This is a clientside problem and has nothing to do with serverside ASP.
Please ask and follow up on a clientside NG.
==============
btw, you cannot tab [or give focus to] a <td>, only input fields.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
| |
| Aaron [SQL Server MVP] 2004-06-26, 10:19 am |
| This is an HTML issue, and would be happening whether you were using
ColdFusion, ASP, PHP, CGI, etc. etc.
You'll have better luck with client-side form/GUI questions in a client-side
newsgroup...
--
http://www.aspfaq.com/
(Reverse address to reply.)
"yabba" <REMOVETHISyabbadoo_2004@hotmail.com> wrote in message
news:eslR9OuWEHA.4020@TK2MSFTNGP09.phx.gbl...
> I am building an asp form with various elements...
>
> <td tabindex=[x]>blablabla</td>
>
> Where the [x] is the order I want, so far so good and using the tab key
> provides the desired results however...
>
> When I *click* on one of the elements the tab order is not updated and so
the
> next tab key jumps to wherever tabbing left off.
>
> Is there a way to use onfocus() or something to update the tab order so
the
> next tab will focus on the next element after the *clicked* element?
>
> Thanx for any help
>
>
>
>
| |
| yabba 2004-06-26, 10:19 am |
| In article <Xns9513D30C3E3A7eejj99@194.109.133.29>,
exjxw.hannivoort@interxnl.net says...
>
>yabba wrote on 25 jun 2004 in microsoft.public.inetserver.asp.general:
>
>This is a clientside problem and has nothing to do with serverside ASP.
>
>Please ask and follow up on a clientside NG.
>
>==============
>
>btw, you cannot tab [or give focus to] a <td>, only input fields.
actually you can... any form element
>
>
>--
>Evertjan.
>The Netherlands.
>(Please change the x'es to dots in my emailaddress)
| |
| Aaron [SQL Server MVP] 2004-06-26, 10:19 am |
| > >btw, you cannot tab [or give focus to] a <td>, only input fields.
>
> actually you can... any form element
Regardless, this has ABSOLUTELY NOTHING to do with ASP...
| |
| Dave Anderson 2004-06-26, 10:19 am |
| yabba wrote:
>
> actually you can... any form element
I was unaware that <TD> is a form element.
Oh -- and like Aaron says...
http://www.aspfaq.com/etiquette.asp?id=5001
--
Dave Anderson
Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
|
|
|
|
|