コード例 #1
0
        public JsonResult Add(int pageSectionId, string containerElementId, string elementBody)
        {
            elementBody = elementBody.Replace("animated bounce", string.Empty);

            _pageComponentTypeService.Add(pageSectionId, containerElementId, elementBody);

            return(Json(new { State = true }));
        }
コード例 #2
0
ファイル: ComponentController.cs プロジェクト: gdg/PortalCMS
        public JsonResult Add(int pageSectionId, string containerElementId, string elementBody)
        {
            _pageComponentTypeService.Add(pageSectionId, containerElementId, elementBody);

            return(Json(new { State = true }));
        }