Hi

I have two grid panel. The first is filled with records from the database. The second is populated when I select a record in the first. I select the button to clear all that runs on the server and the first grid clean records but not the second. The first is a grid buffer

I'm trying to clear the records of the grid as follows:

List <object> <object> list = new List ();

gridOne.GetStore (). DataSource = list;
gridOne.GetStore (). DataBind ();

gridTwo.GetStore (). DataSource = list;
gridTwo.GetStore (). DataBind ();