How can I databind with a new list every time I click a button (refresh the grid with the new data).
Hello Joy,
In your button's click event you can handle the following code to populate your grid by either using the datasource or setdatabinding properties. Here is an example:
private void ultraButton1_Click(object sender, EventArgs e){BindingList<Test> binding = new BindingList<Test>();......ultraGrid.SetDataBinding(binding, null);}