Telerik ASP.NET MVC2 Grid Delete Function with compound key.
- by Dani
I have a grid with a compound key: OrderId, ItemID.
When I update the grid - the
public ActionResult UpdateItemGridAjax(int OrderID, string ItemID) Gets both values from the grid.
When I delete a row I get only the first one:
public ActionResult DeleteItemGridAjax(int OrderID, string ItemID)
Why is it happens and how can I get the ItemId value…