We allow the users to filter the grid by typing into the filter row(which works great by the way). But when they hit enter I need to be able to grab the first row out of the filtered grid. The way our code works it would not be easy for us to loop through all rows and get the first visible row. Is there a easy way to get this row????
Thanks it worked great. They both did.
UltraGridRow row = this.ultraGrid1.Rows.GetFilteredInNonGroupByRows()[0];
I'm not certain that this will help you, but the collection returned from the UltraGrid.DisplayLayout.RowScrollRegions[0].VisibleRows property gives you the rows that are filtered in.