focus/tab question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • yabba

    focus/tab question

    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.

    #2
    Re: focus/tab question

    yabba wrote on 25 jun 2004 in microsoft.publi c.inetserver.as p.general:[color=blue]
    > 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?[/color]

    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)

    Comment

    • Aaron [SQL Server MVP]

      #3
      Re: focus/tab question

      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...

      --
      Please contact this domain's administrator as their DNS Made Easy services have expired.

      (Reverse address to reply.)




      "yabba" <REMOVETHISyabb adoo_2004@hotma il.com> wrote in message
      news:eslR9OuWEH A.4020@TK2MSFTN GP09.phx.gbl...[color=blue]
      > 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[/color]
      the[color=blue]
      > next tab key jumps to wherever tabbing left off.
      >
      > Is there a way to use onfocus() or something to update the tab order so[/color]
      the[color=blue]
      > next tab will focus on the next element after the *clicked* element?
      >
      > Thanx for any help
      >
      >
      >
      >[/color]


      Comment

      • yabba

        #4
        Re: focus/tab question

        In article <Xns9513D30C3E3 A7eejj99@194.10 9.133.29>,
        exjxw.hannivoor t@interxnl.net says...[color=blue]
        >
        >yabba wrote on 25 jun 2004 in microsoft.publi c.inetserver.as p.general:[color=green]
        >> 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?[/color]
        >
        >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.[/color]

        actually you can... any form element

        [color=blue]
        >
        >
        >--
        >Evertjan.
        >The Netherlands.
        >(Please change the x'es to dots in my emailaddress)[/color]

        Comment

        • Aaron [SQL Server MVP]

          #5
          Re: focus/tab question

          > >btw, you cannot tab [or give focus to] a <td>, only input fields.[color=blue]
          >
          > actually you can... any form element[/color]

          Regardless, this has ABSOLUTELY NOTHING to do with ASP...


          Comment

          • Dave Anderson

            #6
            Re: focus/tab question

            yabba wrote:[color=blue][color=green]
            >>
            >> btw, you cannot tab [or give focus to] a <td>, only input fields.[/color]
            >
            > actually you can... any form element[/color]

            I was unaware that <TD> is a form element.

            Oh -- and like Aaron says...




            --
            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.


            Comment

            Working...