I have a grid using this command...
.Destroy(update => update.Action("EditingInline_Destroy", "Grid"))
and it hits my controller as expected...
.Destroy(update => update.Action("EditingInline_Destroy", "Grid"))
and it hits my controller as expected...
public ActionResult EditingInline_Destroy([DataSourceRequest] DataSourceRequest request, MemoModel memo)
But the memo is coming in Null.
How is the Destroy or Update supposed to pass in the object or ID of the row being deleted?