AD
Administrator
Syncfusion Team
September 28, 2006 05:23 AM UTC
Hi,
To restore the grid without any filter, you need to set the RowFilter property to null or string.Empty. Below is a code snippet
DataView dv = (this.grid.DataSource as DataTable).DefaultView;
dv.RowFilter = null;
//Or
filterBar.RowFilter = null;
Thanks,
Haneef