I'm trying to pass the ID of from View to controller, I'm using Kendo Ui Grid.
I tried other ways to with java script and stuff bUt I think its b/c of another class as view model or may be some thing else
Here is my kendo Grid
.Read(read => read.Action("GetRejectedWorkOrders", "WorkOrder", new { wovId = @TempData["WorkOrderVendorId"]}))
@(Html.Kendo().Grid(Model)
.Name("RejectedWorkOrderGrid")
.Columns(columns =>
{
columns.Bound(p => p.Id).ClientTemplate(actionColumnTemplate).Width(190).Title("Job No.").Filterable(false).Sortable(false).Width(100);
columns.Bound(x => x.Vendor).Title("Vendor");
columns.Bound(p => p.RejectedDateStr).Title("Rejected Date").Width(110);
columns.Bound(p ...
Go to the complete details ...