使用 C# 以编程方式取消 gridview 行编辑模式
我正在使用可编辑的 GridView。单击行的编辑按钮后,该行将进入可编辑模式,一旦我更新当前行的详细信息,该行就会被保存并进入正常模式。
在这里我面临一个问题。当我将行设置为可编辑模式时,单击按钮(不是网格的一部分)时,我想将可编辑行模式设置为正常模式。
I am using a Editable GridView. On clicking edit button of a row, the row is coming in Editable mode and once I update the details of a current row, the row is getting saved and comes in normal mode.
Here I face one issue. When I make row to a Editable mode, On click of a button (which is not a part of grid) I want to bring Editable row mode to a normal mode.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 gridview 的 EditIndex 值更改为 -1。
Change the gridview's EditIndex value to -1.
您可以将其放入“RowCancelingEdit”事件中
我的 Gridview 名称是 grdViewDetails。
You can put this in your "RowCancelingEdit" event
My Gridview name is grdViewDetails.