BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.gridDataBoundGrid1.Binder.OptimizeListChangedEvent = true;
If you are using 1.6.1.8, then you will have to handle CurrentCellStartEditing, and explicitly add a DataRow to your DataTable at that point.
private void gridDataBoundGrid1_CurrentCellStartEditing(object sender, CancelEventArgs e) { GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell; if(cc.RowIndex == this.gridDataBoundGrid1.Model.RowCount) { DataRow dr = this.dt.NewRow(); dt.Rows.Add(dr); } }
> this.gridDataBoundGrid1.Binder.OptimizeListChangedEvent = true;
>
>
>If you are using 1.6.1.8, then you will have to handle CurrentCellStartEditing, and explicitly add a DataRow to your DataTable at that point.
>>private void gridDataBoundGrid1_CurrentCellStartEditing(object sender, CancelEventArgs e) >{ > GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell; > if(cc.RowIndex == this.gridDataBoundGrid1.Model.RowCount) > { > DataRow dr = this.dt.NewRow(); > dt.Rows.Add(dr); > } >}