AD
Administrator
Syncfusion Team
April 26, 2006 06:32 AM UTC
Hi Nevin,
An arbitrary ArrayList DataSource does not fire any events to notify any changes. In such cases, you would have to explicitly call grid.Refresh after the arraylist changes. Also the Binder.InitializeColumns must be called at the first time when the object is added in the arralist to initialize the internal columns.
this.gridDataBoundGrid1.Binder.InitializeColumns();
this.gridDataBoundGrid1.Refresh();
Regards,
Calvin.