gpt4 book ai didi

asp.net-mvc - 有条件选择 Action 的剑道网格列

转载 作者:行者123 更新时间:2023-12-01 12:44:47 25 4
gpt4 key购买 nike

这是我得到的:

columns.Bound(t => t.Id)
.Title("")
.Template(@<text></text>)
.ClientTemplate("<a class=\"k-button\" href='"
+ Url.Action("Edit", "Controller") + "/#=Id#'>Edit</a>")
.Width(110);

我需要的是根据绑定(bind)对象的类型选择特定的 Controller 操作。 (不同的形式,例如 CarEdit 当我们说 Type==1PlaneEditType==2 时)

我最近使用 JS 做了类似的事情(生成 ClientTemplate 内容),但非常感谢没有讨厌的 JS 的解决方案。

最佳答案

目前这是我最好的解决方案:

columns.Bound(t => t.Id)
.Title("")
.Template(@<text></text>)
.ClientTemplate("#= GetEditTemplate(data)#")
.Width(110);

function GetEditTemplate(data) {
var html;

if (data.Type === 1) {
html = kendo.format("<a class=\"k-button\" href='" + '@Url.Action("Edit1", "Controller")' + "/{0}" + " '>Edit</a> ",
data.Id
);
}
else {
html = kendo.format("<a class=\"k-button\" href='" + '@Url.Action("Edit2", "Controller")' + "/{0}" + " '>Edit</a> ",
data.Id
);
}

return html;
}

关于asp.net-mvc - 有条件选择 Action 的剑道网格列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21258083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com