DevExpress.XtraGrid.v13.2
UpdateCurrentRow
//
// 摘要:
// Validates the focused row and saves its values to the data source.
//
// 返回结果:
// true if the row has been successfully updated; otherwise, false.
public override bool UpdateCurrentRow();
校验焦点行并保存值到数据源中.
同时 1,更新 Rowstate = Modified ; 2,关闭编辑器 !!单独使用也没有生效
PostEditor
//
// 摘要:
// Posts the value being edited to the associated data source without closing
// the active in-place editor.
//
// 返回结果:
// true if the value being edited has been successfully saved to the associated
// data source; otherwise, false.
public bool PostEditor();
提交数据到关联的数据源但是并'不'关闭活动编辑器,也不会更新行状态
CloseEditor
//
// 摘要:
// Hides the active editor saving changes made.
public void CloseEditor();
关闭编辑器并保存更改的数据,但是不会更新行状态
//效果 : 在未关闭编辑器的情况下,更新编辑器的值到数据源并改变RowState
this.GridView.PostEditor();
this.GridView.UpdateCurrentRow();