对数据源执行插入操作后,RadGrid 丢失当前编辑项的跟踪
我有一个绑定到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果重新绑定数据源,一切都将被重置。 您将需要跟踪当前的“编辑”项,并在反弹数据源后“重新激活”它。
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.
确保:
Make sure that: