Regarding Filter in GridGroupingControl

Hi All,

I want know the event which will fire after filter is done? because i want display another grid based records in current grid after filter.

Please reply me as soon as possible.

Thanks and Regards
K.Sathishkumar




1 Reply

AD Administrator Syncfusion Team November 29, 2007 10:04 AM UTC

You can try the TableDescriptor.FilterRecords.Changed event.


//subscribe to the event

this.gridGroupingControl1.TableDescriptor.RecordFilters.Changed += new Syncfusion.Collections.ListPropertyChangedEventHandler(RecordFilters_Changed);

//the event handler
void RecordFilters_Changed(object sender, Syncfusion.Collections.ListPropertyChangedEventArgs e)
{
this.Text = gridGroupingControl1.Table.FilteredRecords.Count.ToString();
}




Loader.
Up arrow icon