在项目中,我通过ASPxGridView来链接到LinqServerModeDataSource。麻烦的是,ASPxGridView不允许我们编辑数据,但是我必须支持编辑数据,这个如何解决?
解决方案
LinqServerModeDataSource与一个支持数据修改操作的数据源控件配合使用,可轻松地解决ASPxGridView的编辑数据问题。
首先, 我们得了解一下ASPxGridView是如何工作的. 当点击更新(删除)按钮时,表格视图将会调用它相关的数据源的更新(删除,插入)命令。当ASPxGridView连接到LinqServerModeDataSource时,你点击更新(删除)等这些按钮,将会触发”Specified Method is Not Supported“异常, 并且ASPxGridView 还会在EditForm的错误行上提示"Specified Method is Not Supported" 。这是因为 LINQ 定义了查询语言,但是它并没有定义如何进行数据修改,所以才会发生这个问题。
你应该做的是:
1) 处理ASPxGridView的 行更新, 行插入, 行删除事件;
2) 防止ASPxGridView 自己去处理修改操作;
3) 委托数据修改操作到额外的数据源上.
下面的代码显示了怎样实现数据的修改:
[C#]
protected void ASPxGridView1_RowUpdating(object sender, DevExpress.Web.Data.ASPxDataUpdatingEventArgs e) {
LinqDataSource1.Update(e.Keys, e.NewValues, e.OldValues);
e.Cancel = true;
ASPxGridView1.CancelEdit();
}
protected void ASPxGridView1_RowInserting(object sender, DevExpress.Web.Data.ASPxDataInsertingEventArgs e) {
LinqDataSource1.Insert(e.NewValues);
e.Cancel = true;
ASPxGridView1.CancelEdit();
}
protected void ASPxGridView1_RowDeleting(object sender, DevExpress.Web.Data.ASPxDataDeletingEventArgs e) {
LinqDataSource1.Delete(e.Keys, e.Values);
e.Cancel = true;
ASPxGridView1.CancelEdit();
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:DevExpress控件中文网 [https://www.devexpresscn.com/]
本文地址:https://www.devexpresscn.com/post/316.html