The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
BMBalaji Marimuthu Syncfusion Team January 26, 2016 09:57 AM UTC
Hi Greg,
Thanks for contacting Syncfusion support.
Yes, we can able to focus the expand/collapse nodes in Grid using the jQuery focus method. Refer to the sample and code example as below. Sample: http://jsplayground.syncfusion.com/l4tw4v2s
var ele = obj.getContentTable().find("td[class^='e-recordplus']"); //grouping
//var ele1 = obj.getContentTable().find("td[class^='e-detailrow']");//if use detail template or hierarchy
$(ele[0]).attr("tabindex", 0);
$(ele[0]).focus();
}
}
}); </script>
Please find the keys to focus expand/ collapse node.
Grid focus
Alt + j
Expand/Collapse node
Shift + d
If you want to perform the Expand and collapse operation using the keyboard, we have a default support. So please refer to the demo and documentation in following link.