private void Save(Models.DocumentCategory record, bool isNew) { // add any code to update other fields/tables here record.Save(); if (record.ParentDocumentCategoryID.HasValue && record.PageID.HasValue) { record.PageID = null; record.Save(); } // save subform or related checkboxes here eg record.Lines.Save(); //ifsubform: record.example.Save(); //CheckLock(record); //lockobj.UnLockTable(record.GetTableName(),record.ID); ActiveRecordLoader.ClearCache("DocumentCategory"); }
protected ActionResult ProcessForm(Models.DocumentCategory 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 += "Document Category " + record.GetName() + " saved."; } } catch (UserErrorException e) { ModelState.AddModelError("Record", e.Message); } if (!ModelState.IsValid) { // invalid so redisplay form with validation message(s) return(View("DocumentCategoryEdit", new EditViewModel() { DocumentCategory = record })); } else if (Web.Request["SaveAndRefreshButton"] != null) { return(RedirectToEdit(record.ID)); } else if (Web.Request["DuplicateButton"] != null) { var newRecord = new Models.DocumentCategory(); newRecord.UpdateFrom(record); newRecord.Save(); Web.InfoMessage += "Copy of Document Category " + record.GetName() + " created. You are now editing the new copy."; return(RedirectToEdit(newRecord.ID)); } else { return(RedirectToReturnPage()); } }