AD
Administrator
Syncfusion Team
September 7, 2004 11:50 AM UTC
Hi,
you can get a hold of the FieldDescriptor and
then you can loop through records with
FieldDescriptor fd = groupingControl.TableDescriptor.Fields["City"];
foreach (Record r in groupingControl.Table.FilteredRecord)
{
string s = r.GetValue(fd).ToString();
if (s.StartsWith("Toro"))
{
r.SetCurrent();
break;
}
Stefan