如何使用kendo ui grid destroy命令自定义确认消息?

时间:2014-01-24 13:22:01

标签: asp.net-mvc-4 command kendo-grid destroy confirmation

我正在使用Kendo UI Grid处理ASP.NET MVC4应用程序。

我想用Destroy命令显示自定义确认消息,而不是通常的确认消息。

下面是一段代码: -

@(Html.Kendo().Grid<Gts.Core.Dto.CategoryDto>().Columns(columns =>
       {columns.Command(command => { command.Destroy(); }).Width(70).HtmlAttributes(new {style = "text-align:right;padding:0px;" });

})。DataSource(dataSource =&gt; dataSource                         阿贾克斯()                         .Model(model =&gt; model.Id(p =&gt; p.CategoryID))                         .Read(read =&gt; read.Action(“CategoryItemDetails”,“Category”,new {CategoryID =“#= CategoryID#”,categoryId =“#= FKCategoryID#”}))                         .Destroy(update =&gt; update.Action(“CategoryDe​​stroy”,“Category”))                     )             .Events(events =&gt; events.DataBound(“dataBoundChild”)。Edit(“dataBoundEdit”)。Remove(“deleteCategoryChild”)。Save(“datasourceChange”))。ToClientTemplate()

我们怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您可以创建一个自定义模板列,如下所示

{ command: { text: "Delete", click: deleteData }, title: "Delete", width: width7, menu: false }

在deleteData函数中,您可以在确认框中显示自定义用户友好消息。