如何将 dataItem 传递给 KendoGrid 单元格自定义单击上的 js 函数

How to Pass dataItem to a js function on a KendoGrid cell custom click

我有一个 KendoGrid,其中有一列如下:

{
      title: "Column1",
      template: <a href="javascript:customJsFunction(#= data #)">click here</a>',
},

..首先这段代码不起作用。 我试图将整个 "data"(当前行的数据)传递给 javascript 函数。 提前致谢。

尝试使用此模板 JSON.stringify():

"<a href='javascript:customJsFunction(#= JSON.stringify(data) #)'>Click here</a>"

Demo