I see lots of eaxample which bind to KendoUI widgets.
How do I bind a DataSource to form elements i.e. html input.
Kind of master detail example to call read on the MVC controller.
How do I bind a DataSource to form elements i.e. html input.
Kind of master detail example to call read on the MVC controller.
public JsonResult Read(int dealerId)
{
var db = new UsedCarsEntities();
var temp = db.Dealers.FirstOrDefault(w => w.DealerId == dealerId);
return this.Json(temp, JsonRequestBehavior.AllowGet);
}
