TabIndex of DataGrids

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default TabIndex of DataGrids

    Hi

    You can remove a Web Server control from the tab order by
    setting the TabIndex property to a negative value.

    Try after setting tabIndex property to a negative value.

    HTH
    Ravikanth

    >-----Original Message-----
    >I have a page with 4 data grids on it - each are in div
    tags so that
    >they are scrollable. I am having trouble setting the
    taborder between
    >them. I have the tabindex set from 1-4 on them and my
    other labels
    >(which do not need to ever get the focus) set to 45-50.
    It doesn't
    >work. It goes to the first grid(I set focus there) then
    to the url
    >line then to all my label then to the 4th, 3rd, 2nd and
    1st grid.
    >Any ideas on how to get the taborder set?
    >Thanks in advance for any help,
    >Deidre
    >.
    >
    Ravikanth[MVP] Guest

  2. Similar Questions and Discussions

    1. Datagrid item renderer numberstepper tabIndex
      I have a datagrid with a item renderer in it that contains a numberStepper. There are two columns that have number steppers in them. If I hit tab...
    2. How to show the standard properties (e.g. TabIndex)?
      I use ASP.NET 1.1 with VS2003. I just first created a web control. When I put my control on designer, I don't know why the properties have not any...
    3. TabIndex and AutoPostBack
      I have a long form that includes several fields which require AutoPostBack=True. I want the user to be able to tab through the fields in sequence...
    4. Creating a server control and using tabindex
      the way i would suggest is set the first combo to the value set by the user in designer. the second and third will be incremental values. since...
    5. textField.tabIndex();
      hi everybody, How you feel ? I have a example with textfield and used tabIndex(); I placed a setFocus(); on my first textField but i press enter...
  3. #2

    Default Re: TabIndex of DataGrids

    It goes to the first grid then to the url
    line then to the 4th, 3rd, 2nd and 1st grid.
    Any other ideas?

    "Ravikanth[MVP]" <dvravikanth@hotmail.com> wrote in message news:<0bb701c34d2c$db2fd270$a501280a@phx.gbl>...
    > Hi
    >
    > You can remove a Web Server control from the tab order by
    > setting the TabIndex property to a negative value.
    >
    > Try after setting tabIndex property to a negative value.
    >
    > HTH
    > Ravikanth
    Deidre Guest

  4. #3

    Default Re: TabIndex of DataGrids

    I got it to work! I had to change the order of the controls in the
    html as well as set the tabindex.
    Deidre
    Deidre 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