CB
Clay Burch
Syncfusion Team
September 6, 2002 01:49 PM UTC
The GridDataBoundGrid.EnableAddNew property controls whether this append row is visible or not. If you set this property false in the designer, then that should be all that is necessary.
But if you set it after the GridDataBoundGrid has already been populated, say in the Form_Load after the call to your DataAdapter.Fill method, then the append row is already present. So, if you set the property after the grid has been populated, you should also call ResetVolatileData to make sure the display reflects the new setting.
this.gridDataBoundGrid1.EnableAddNew = false;
//needed if grid has already been populated
this.gridDataBoundGrid1.Model.ResetVolatileData();