Пример #1
0
        public JsonResult AddChildSkill()
        {
            ViewBag.MainSkill = _sharedService.GetDropDownData(Enums.LookUpTable.MainSkill);
            string htmlMainSkill = CustomPartialView.RenderPartialViewToString(this, Enums.PartialView.AddEditChildSkill, new ChildSkill());

            return(Json(new { modalBodyHtml = htmlMainSkill, modalHeader = CommonFunc.GetModalActionHeader(Enums.ScreenNames.ChildSkill, Enums.Actions.Add) }, JsonRequestBehavior.AllowGet));
        }