对数据源执行插入操作后,RadGrid 丢失当前编辑项的跟踪

发布于 2024-07-17 00:45:53 字数 266 浏览 7 评论 0原文

我有一个绑定到 LinqDataSource 的 RadGrid。 网格具有自动生成的编辑和删除列。 它显示一个简单的表格,没有任何层次结构。

我正在采取以下步骤。

使用 LinqDataSource 填充 RadGrid 单击

网格最后一行上的“编辑”

从页面上的另一个控件,更新 linqdatasource 并在网格上调用重新绑定

网格失去对当前编辑项目的跟踪,并在编辑模式下打开另一个项目

请帮助。

I have a RadGrid bound to a LinqDataSource. The grid has auto generated Edit and Delete columns. It displays a simple table without any hierarchical organization.

I am taking the following steps.

Populate a RadGrid using a LinqDataSource

Click Edit on the last row of the grid

From another control on the page, update the linqdatasource and call rebind on the grid

The grid loses track of the current editing item, and opens a different item in edit mode

Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飞烟轻若梦 2024-07-24 00:45:53

如果重新绑定数据源,一切都将被重置。 您将需要跟踪当前的“编辑”项,并在反弹数据源后“重新激活”它。

If you rebind the datasource, everything will be reset. You will need to keep track of the current 'edit' item, and 're-activate' it after your rebound the datasource.

暮年 2024-07-24 00:45:53

确保:

  1. 所有绑定都发生在 OnInit 事件中(或处理按钮单击后)
  2. 网格的视图状态未禁用

Make sure that:

  1. All binding occcurs in the OnInit event (or after the button click is handled)
  2. Viewstate is not disabled for the grid
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文