This question is locked. New answers and comments are not allowed.
I have a custom command that when i pass filtered telerik mvc grid data, it is always null.How to pass filtered data to action? I try this code= `$("#Grid").data("tgrid") but result data is current page's data. I want to get all filtered data.
my code is
@model IEnumerable<IsTalep.Models.ViewModel.Ask_Answer>
ToolBar(tool => tool.Custom()
.HtmlAttributes(new { id = "print" })
.Text("Yazır")
.Action("UnitReport", "RaporTur", new { data=Model}))
public ActionResult UnitReport(GridModel data) or public ActionResult UnitReport(Ask_Answer data)