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????
UltraGridRow row = this.ultraGrid1.Rows.GetFilteredInNonGroupByRows()[0];
Thanks it worked great. They both did.