BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
public class MyGridDataBoundGrid : GridDataBoundGrid { protected override void OnCurrentCellCloseDropDown(Syncfusion.Windows.Forms.PopupClosedEventArgs e) { base.OnCurrentCellCloseDropDown(e); if(this.CurrentCell.RowIndex == 1) //filter row { Console.WriteLine("After filter, there are {0} rows in grid.", this.Model.RowCount); } } }
Imports Syncfusion.Windows.Forms.Grid
Public Class MyGridDataBoundGrid
Inherits GridDataBoundGrid
Protected Overrides Sub OnCurrentCellCloseDropDown(ByVal e As Syncfusion.Windows.Forms.PopupClosedEventArgs)
MyBase.OnCurrentCellCloseDropDown(e)
If Me.CurrentCell.RowIndex = 1 Then '' filter row
Console.WriteLine("After filter, there are {0} rows in grid.", Me.Model.RowCount)
End If
End Sub
End Class
If you do not want to do this, you can wait until the next release (I do not know when it will be available, but it is in the works). We have added an event, FilterBarFilterCompleted, that is raised after the filter has been completed.