我有一个 KENDO Grid,其中的字段和列是从一个数据源填充的,该数据源是从一个动作中填充的。
现在我想将该网格中的特定单元格内容绑定到另一个控制器操作并传递该单元格的 ID。我该如何做到这一点。下面是我的网格的代码。我可以在 kendo UI 文档中找到答案,但他们使用 HTML Helpers 来实现这一点。我希望它与下面的样式相同。让我们将 readername 作为需要此绑定的单元格内容。以前有人试过这个吗?
$("#eventsgrid").kendoGrid(
{
dataSource: eventsDataSource,
navigatable: true,
pageable:
{
input: true,
numeric: false
},
columns:[
{
field:"",width:"30px", template:'<input type="checkbox" id="selectevent"/>'
},
{
field:"CardNumber",width:"80px"
},
{
field: "Image", width: "45px", title: "Type", template: "<img src='/Content/Themes/Default/images/AlarmType.png' id='AlarmType'/>"
},
{
field: "Priority", width: "60px", title: "Priroty"
},
{
field: "Origin", title:"Event Time"
},
{
field:"Description", title:"Alarm Title"
},
{
field: "ReaderName", title: "Location"
},
{
field: "", title: "Actions and Interactions", width: "160px", template: '<input type="button" value="Acknowledge" onclick="CheckAck" id="Acknowledge" /><br/><a href="javascript:performActions()" >3 Actions</a>'
},
{
field: "Image", title: "More", width: "60px", template: "<img src='/Content/Themes/Default/images/Door.png' onclick='showDetails()' id='door' width='20' height='20'/><div id='cardholderdetails'></div>"
}
],
}).data("kendoGrid");
现在我有一个函数调用带有参数的 $.POST 调用。该函数与按钮的单击事件挂钩。有不同的方法可以做到这一点吗?