Hi All,
I have a page Containing Some Buttons and a Table distributed over a page. When I am trying to access the controls using keyboard (Using Tab Key), Firstly Focus is Moving(when using TAB key) to buttons and then table, But I need in a specific order : a few Buttons first and then table and then buttons below the table.
Attached Screenshots may help you to understand.
I have some buttons on top of the page and then a table in middle and another button in bottom of the screen.
Current Scenario: focus is moving from 1 --> 2 --> 3
Required Scenario: Focus should move from left to right and Top to bottom. 1 --> 3 ---> 2
I tried to add a Tab Index for a Table but I could not add for a table.
Can Anyone help me on this ??
Solved! Go to Solution.
Hi@PrasadBabu,
Based on the issue that you mentioned, do you want to set the TabIndex property of a DataTable?
Could you please share a bit more about the scenario, do you want to move the button on the top firstly and then move to the DataTable and move to the button on the boottom, right?
I want to explain to you that there is no TabIndex property of a DataTable.
As an alternative solution, you could replace the table control with a Gallery, and then set the TabIndex as:
2
For the order you want, you should set the TabIndex of the button on the top as:
1
And for the Button on the bottom, you should set TabIndex as:
3
Hope it could help.
Regards,
Qi
Hi@PrasadBabu,
Based on the issue that you mentioned, do you want to set the TabIndex property of a DataTable?
Could you please share a bit more about the scenario, do you want to move the button on the top firstly and then move to the DataTable and move to the button on the boottom, right?
I want to explain to you that there is no TabIndex property of a DataTable.
As an alternative solution, you could replace the table control with a Gallery, and then set the TabIndex as:
2
For the order you want, you should set the TabIndex of the button on the top as:
1
And for the Button on the bottom, you should set TabIndex as:
3
Hope it could help.
Regards,
Qi
User | Count |
---|---|
196 | |
122 | |
89 | |
48 | |
41 |
User | Count |
---|---|
285 | |
162 | |
138 | |
80 | |
73 |