private void Save(Models.MailLog record, bool isNew) { // add any code to update other fields/tables here record.Save(); // save subform or related checkboxes here eg record.Lines.Save(); //ifsubform: record.example.Save(); CheckLock(record); lockobj.UnLockTable(record.GetTableName(), record.ID); }
/// <summary> /// Populates defaults and opens edit form to add new record /// GET: /Admin/MailLog/Create /// </summary> public ActionResult Create() { var data = new EditViewModel(); Breadcrumbs.Current.AddBreadcrumb(3, "Add Mail Log"); var record = new Models.MailLog(); // any default values can be set here or in partial class MailLog.InitDefaults() data.MailLog = record; return(View("MailLogEdit", data)); }
protected ActionResult ProcessForm(Models.MailLog record) { try { record.UpdateFromRequest(); // read subform or related checkboxes here eg record.Lines.UpdateFromRequest(); //ifsubform: record.example.UpdateFromRequest(); Validate(record); if (ModelState.IsValid) { Save(record, record.IsNewRecord); Web.InfoMessage += "Mail Log " + record.GetName() + " saved."; } } catch (UserErrorException e) { ModelState.AddModelError("Record", e.Message); } if (!ModelState.IsValid) { // invalid so redisplay form with validation message(s) return(View("MailLogEdit", record)); } else if (Web.Request["SaveAndRefreshButton"] != null) { return(RedirectToEdit(record.ID)); } else if (Web.Request["DuplicateButton"] != null) { var newRecord = new Models.MailLog(); newRecord.UpdateFrom(record); newRecord.Save(); Web.InfoMessage += "Copy of Mail Log " + record.GetName() + " created. You are now editing the new copy."; return(RedirectToEdit(newRecord.ID)); } else { return(RedirectToReturnPage()); } }
private void Validate(Models.MailLog record) { // add any code to check for validity //ModelState.AddModelError("Record", "Suchandsuch cannot be whatever."); }