all groups > asp.net datagrid control > november 2005 >
You're in the

asp.net datagrid control

group:

Tabbing index


Tabbing index eagle
11/23/2005 9:28:07 AM
asp.net datagrid control: 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.

Re: Tabbing index Ken Cox
11/24/2005 2:32:09 PM
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]

[quoted text, click to view]

AddThis Social Bookmark Button