通过外部按钮将 radGrid 设置为编辑模式
我有一个 rad 网格,可以在其中插入/更新和删除数据项。
我已经设置了一个带有按钮的 CommandItemTemplate,单击该按钮会将网格置于编辑模式。
我想做的是具有相同的功能,但来自外部 asp.net 按钮。如果我可以让这个按钮触发 radGrid_ItemCommand 事件,那么我就可以让它工作。但是如何从 asp.net 按钮传递相关的 GridCommandEventArgs 呢?
任何帮助都将不胜感激
Truegilly
I have a rad grid where I can insert/update and delete items of data.
i have set up a CommandItemTemplate with a button that, when clicked will put the grid in edit mode.
What I would like to do is have the same functionality but from an external asp.net button. If I can get this button to trigger the radGrid_ItemCommand event then I could get it working. But how do I pass the relevant GridCommandEventArgs from a asp.net button ?
Any help is always appreciated
Truegilly
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它不会触发 ItemCommand,但我认为您可以通过添加要通过 EditIndexes 集合进行编辑的行索引来更改编辑状态(Telerik RadGrid - 如何默认为编辑模式?)。这不会调用我不相信的命令事件,而是调用编辑事件。
HTH。
It wouldn't fire ItemCommand, but I think you change the edit status by adding the row index to edit via EditIndexes collection (Telerik RadGrid - How do I default to edit mode?). This wouldn't invoke the command event I don't believe, but the editing event.
HTH.