Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default Tabbing index

    Is there a way to not allow a user to tab to an item? I have several labels
    & textboxes in the grid and don't want the user to tab to them. I have
    other controls in the grid that they can tab to, such as edit & delete
    columns.

    Thank you for your help.


    eagle Guest

  2. Similar Questions and Discussions

    1. Tabbing in a rendered item
      Hi I have a TileList that has a custom itemRenderer and I can't seem to find a way to be able to tab between input boxes. All I can do it tab...
    2. tabbing inside components!!
      h i have comboboxes and textfields inside scrollpane component with tabIndex set to all of them. but for some reason it does not work. its driving...
    3. Tabbing between different movie clips
      Hello (Flash MX 2004 Pro I have components in different movie clips on the same screen, and I'd like to seamlessly tab between them. Setting...
    4. tabbing between table cells
      Is there a shortcut for "insert end of column" to tab between table cells. Its so clunky. At this rate I think I'll do the tables in a wordprocessor...
    5. tabbing off the end of a bound form
      You could set the Cycle property of the form to Current Record. However, there are quite literally a dozen ways that the record can be saved. The...
  3. #2

    Default Re: Tabbing index

    The usual way to exclude a control from the tab sequence is to set its
    tabindex value to -1 as shown below:

    <asp:LinkButton ID="LinkButton1" runat="server"
    TabIndex="-1">LinkButton</asp:LinkButton>

    Ken
    Microsoft MVP [ASP.NET]

    "eagle" <eagle@yahoo.com> wrote in message
    news:edmQMrE8FHA.3984@TK2MSFTNGP11.phx.gbl...
    > Is there a way to not allow a user to tab to an item? I have several
    > labels & textboxes in the grid and don't want the user to tab to them. I
    > have other controls in the grid that they can tab to, such as edit &
    > delete columns.
    >
    > Thank you for your help.
    >

    Ken Cox Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139