Tabbing through datalist items
-
I have a datalist that contains textboxes in the columns. I have TabIndex set for every dataentry field on the page. I have set TabIndex="121", on the first field TabIndex="122", on the second and so on. The when tabbing the tabs go down the first column, then the second column and so forth. So I changed all of the TabIndexes to TabIndex=121. They still go down each column. I need the tabs to go across all columns of the row before moving down to the next row. How can I get the tabs to move across all columns in a row before moving down to the next row. Can anyone give me "direction" and maybe a code snippet? Thanks..
-
I have a datalist that contains textboxes in the columns. I have TabIndex set for every dataentry field on the page. I have set TabIndex="121", on the first field TabIndex="122", on the second and so on. The when tabbing the tabs go down the first column, then the second column and so forth. So I changed all of the TabIndexes to TabIndex=121. They still go down each column. I need the tabs to go across all columns of the row before moving down to the next row. How can I get the tabs to move across all columns in a row before moving down to the next row. Can anyone give me "direction" and maybe a code snippet? Thanks..
Making them all the same will not do it, you need to sequence them in the direction you want to go.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
I have a datalist that contains textboxes in the columns. I have TabIndex set for every dataentry field on the page. I have set TabIndex="121", on the first field TabIndex="122", on the second and so on. The when tabbing the tabs go down the first column, then the second column and so forth. So I changed all of the TabIndexes to TabIndex=121. They still go down each column. I need the tabs to go across all columns of the row before moving down to the next row. How can I get the tabs to move across all columns in a row before moving down to the next row. Can anyone give me "direction" and maybe a code snippet? Thanks..
Hi... I think it should take it automatically..... If it is the case than you set one global variable and in ItemDataBound just get object of each and every control & u can set tab index=global_variable value for this controlobject. after setting tabindex just increase the global variable value to 1.
-
Making them all the same will not do it, you need to sequence them in the direction you want to go.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Hi... I think it should take it automatically..... If it is the case than you set one global variable and in ItemDataBound just get object of each and every control & u can set tab index=global_variable value for this controlobject. after setting tabindex just increase the global variable value to 1.