Hi Telerik,
I want to reset the filter in columns and i did like this, as show in some other posts. However when the grid rebind, it still show the filtered records, even though the collection attached to grid has full records. What am i doing wrong?
Thank you
I want to reset the filter in columns and i did like this, as show in some other posts. However when the grid rebind, it still show the filtered records, even though the collection attached to grid has full records. What am i doing wrong?
Thank you
| protected void btnReset_Click(object sender, EventArgs e) |
| { |
| foreach (GridColumn column in grdContacts.MasterTableView.Columns) |
| { |
| column.CurrentFilterValue = string.Empty; |
| } |
| grdContacts.Rebind(); |
| |
| } |