我正在使用 Kendo UI 网格,GridEditMode.InCell
我需要在网格列中添加删除/销毁命令的超链接,而不是默认的“删除”按钮。
我当前的代码如下所示:
c.Command(command => command.Destroy()).Width(90);
我正在使用 Kendo UI 网格,GridEditMode.InCell
我需要在网格列中添加删除/销毁命令的超链接,而不是默认的“删除”按钮。
我当前的代码如下所示:
c.Command(command => command.Destroy()).Width(90);
这是我最终要做的
c.Template(@<text></text>)
.Width(50)
.ClientTemplate(@"<a class=""k-button-icontext k-grid-delete"" href=""\#"">Delete</a>");
您需要做的就是添加一个具有k-grid-delete
该类的元素。
例如,您可以将以下锚元素添加到模板列中,它将开始作为删除按钮工作。
<a class="k-button k-button-icontext k-grid-delete" href="#">My delete !</a>