gpt4 book ai didi

javascript - Kendo UI Grid 在 ClientTemplate 中获取 Row Id

转载 作者:行者123 更新时间:2023-11-30 19:43:41 34 4
gpt4 key购买 nike

我有一个 KendoUI 网格中列的自定义模板,我需要获取该行的 ID,以便将其传递给 Javascript 函数。我应该注意到,在 ClientTemplate 中,我有一些 Url.Actions 可以使用“#=Id#”访问 Id,但由于某种原因,它不适用于函数调用。

"#if (hasLogFile(#Id#)) {#" +
"<a role='button' class='btn btnAwesome' href='" + Url.Action("GetLogFile", "Run") + "/#=Id#' title='Log File'><i class='fa fa-file-text-o' aria-hidden='true'></i></a>" +
"#} else {#" +
"<a role='button' class='btn btnAwesome disabled-icon' title='Log File'><i class='fa fa-file-text-o' aria-hidden='true'></i></a>" +
"#}#"

我已经为 hasLogFile(); 的参数尝试了无数种方法(包括 #=Id#)。可以将一些东西传递给函数,例如各种 jQuery 对象或纯文本。这只是获取 Id 的问题。

最佳答案

模板数据的包装方式使您可以在模板代码逻辑中直接引用它。

#if (hasLogFile(#Id#))…

成为

#if (hasLogFile(Id))…

关于javascript - Kendo UI Grid 在 ClientTemplate 中获取 Row Id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55147271/

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