FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Refresh
Link Posted: 26-Jan-2006 02:03
Hi, Iknow that in order to refresh my grid, i need to put 3 rows in my code... (reser,rootnode,invalidate).

in the next version, can you please try to make the grid refresh automaticly...?

thanks,
Guy
Link Posted: 26-Jan-2006 12:33
If you do not change instances of nodes or not totally refresh grid
you can use
flyGrid.Rows.Reset();
flyGrid.Invalidate();

If you need to totally refresh nodes (by replacing old node instances by new node instances (for example another class of node)) you need refresh nodes collection:
flyGrid.Rows.Reset();
flyGrid.Rows.RootNode = null;//or flyGrid.Rows.RootNode.Items.Clear() doesn't matter
flyGrid.Invalidate();