在运行RowUpdated事件服务器端之后,如何在ASPXGridView上关闭一行。在9.3版本中,您只需要在插入后调用以关闭行,但
grid.CancelEdit()
e.cancel = true
我现在有了v11,并且已经从DevExpress.Web.Data.ASPxDataUpdatedEventArgs中删除了e.cancel选项,但是它仍然显示在v11 API上
http://documentation.devexpress.com/#AspNet/DevExpressWebASPxGridViewASPxGridView_RowUpdatingtopic
答案 0 :(得分:1)
您似乎在谈论两个不同的事件:
ASPxGridView.RowUpdating事件提供eventArgs的e.Cancel属性以取消此事件。
ASPxGridView.RowUpdated事件不提供它,因为DataRow已经更新,更改将发布到基础数据源。