通过外部按钮将 radGrid 设置为编辑模式

发布于 2024-09-02 06:22:07 字数 263 浏览 5 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

著墨染雨君画夕 2024-09-09 06:22:07
protected void btnCreate_Click(object sender, EventArgs e)
{
    rgGrid.MasterTableView.InsertItem();
}
protected void btnCreate_Click(object sender, EventArgs e)
{
    rgGrid.MasterTableView.InsertItem();
}
暮凉 2024-09-09 06:22:07

它不会触发 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文