inserito hard coded parametro ItemID di test a 1 nell'URL..., da esporre x usare MVC Grid...

This commit is contained in:
Samuele E. Locatelli
2016-09-23 18:53:24 +02:00
parent c845cfd3f9
commit 5b41f512ad
8 changed files with 178 additions and 135 deletions
+4 -2
View File
@@ -123,12 +123,14 @@ namespace StockManMVC.Controllers
}
// GET: Items
public ActionResult Index()
public ActionResult Index(int? id)
{
var item = db.Item.Include(i => i.ItemFamily);
if (id == null) id = 0;
ViewBag.ItemID = (int)id;
return View(item.ToList());
}
public ActionResult Grid()
{