Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
MCP Servers
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Hi Helen,
Excuse me for the delay. The following snippet show how you can retrieve the group for an item and expand the respective group.
Hope this helps.
private
void
Button1_Click(
object
sender, RoutedEventArgs e)
{
var itemTofind =
this
.playersGrid.Items[2];
var group =
.playersGrid.Items.Groups
.OfType<IGroup>()
.Where(g => g.Items.OfType<
>().Contains(itemTofind)).FirstOrDefault();
.playersGrid.ExpandGroup(group);
}