Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
eagle #1
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
-
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... -
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... -
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... -
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... -
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... -
Ken Cox #2
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



Reply With Quote

