I have an ActionResult in my HomeController defined to return JSON. The JSON is used in my View to render a jqGrid. This works perfectly. In addition to the JSON being returned, I need to also return other data (i.e. a decimal value that is not part of the JSON). What are ways I can do this? I am fairly new to MVC. Thanks for any help provided.
This is my return statement in my ActionResult:
return Json(jsonData, JsonRequestBehavior.AllowGet);