On page load ...when navigating by keyboard focus first goes to the pagination links below the table then back up to the links in the Action table column. How to I set focus to the links within the Action column first when using the keyboard (tabbing) then the pagination links below the table.
1 Answer, 1 is accepted
0
Attila Antal
Telerik team
answered on 23 Aug 2024, 10:48 AM
Hello Diane,
The Grid renders the HTML table child elements in the following order:
<script>functionOnGridCreated(sender, args) {
var grid = sender;
var $masterTableElement = $(grid.get_element()).find('.rgMasterTable');
// Move the <tfoot> elemnt from between the <thead> and <tbody> to the end
$masterTableElement.find('> tfoot').appendTo($masterTableElement);
}
</script>
This will put the focus on the hyperlinks after tabbing away from the Column/Filters.