public ActionResult Bits(string table, int id, string name) { var m = new ExtraValueModel(id, table); return(Content(m.DropdownBitsJson(HttpUtility.UrlDecode(name)))); }
public ActionResult Bits(string table, int id, string name, string location) { var m = new ExtraValueModel(CurrentDatabase, id, table, location); return(Content(m.DropdownBitsJson(HttpUtility.UrlDecode(name)))); }