views:

25

answers:

1
+1  Q: 

Setting Tab Index

Hi.. I have some values in Grid at Runtime.. Two Columns "Name" and "Value".. I made column[0] i.e Name uneditable..So when I press tab I don't want tabindex on Column[0]..I want Tab to move only on editable values.. Can Anyone Help!!!

Thanks in Advance!!!

A: 

Try to set TabIndex for that column with a negative value as -1.

From this page on MSDN you have the following:

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

Leniel Macaferi