Telerik MVC网格事件编辑/添加

时间:2016-11-21 10:43:00

标签: html asp.net-mvc telerik telerik-grid telerik-mvc

我想在网格中为编辑和create命令调用不同的函数。在我的网格中,我添加了一个编辑命令

command.Edit().Text(" ").UpdateText("Speichern").CancelText("Abbrechen");

我有一个用于创建

的工具栏
.ToolBar(toolbar => toolbar.Create().Text("Hinzufügen")).

关于我有的事件

.Events(e => {e.Edit("onEdit");})

函数onEdit由create和edit命令调用... 我现在的问题是......

有没有办法为create命令创建一个自己的事件/函数?

1 个答案:

答案 0 :(得分:0)

您可以通过以下方式为已创建的项目和项目编辑添加事件:

在你的.aspx

<telerik:RadGrid ID="yourTableId"
    OnItemCreated="yourTableIdl_ItemCreated"
    OnEditCommand="yourTableId_ItemCommand"
    ... />

在您的代码隐藏(.aspx.cs)

protected void yourTableId_ItemCreated(object sender, GridItemEventArgs e)
{
    // your code
}

protected void yourTableId_EditCommand(object sender, GridEditEventArgs e)
{
    // your code
}

还有更多&#34; On&#34;像OnCommandItem一样有用的事件。

希望这就是你要找的东西。