How do you get all records affected by FilterCondition/RecordFilterDescriptor

ow do you get all records affected by FilterCondition/RecordFilterDescriptor on a datatable that is bound to a ggc?

1 Reply

JA jamesb September 21, 2006 01:23 AM UTC

never mind... think i found it

FilteredRecordsInTableCollection recs = this.gridGroupingControl1.TableControl.Table.FilteredRecords;

foreach (Record rec in recss)
{
listBox1.Items.Add(rec.ToString());
}

Loader.
Up arrow icon