I have a grid that displays a subset of the entire column set of my model as follows as a result of my search form
$("#kendoResultGrid").kendoGrid({
dataSource: {
data:response
},
scrollable: true,
sortable: true,
columns: [
{ field: "EmpNo", template: "<a href='~/PMP/Index'>Select</a>" },
{ field:"EmpName" },
{ field:"EmpMgr" },
{ field:"ClientName" },
{ field: "FrameworkName",hidden:true }
]
});
I want to be able to pass the whole response object to my Index method on my PMP view and display employee id as a hyperlink. Can you please assist?
I have looked at a few samples but does not seem to work for me