Example #1
0
        public async Task <ActionResult> NewPageTemplate(string tabId, int parentId)
        {
            var template = _pageTemplateService.NewPageTemplateProperties(parentId);
            var model    = PageTemplateViewModel.Create(template, tabId, parentId, _pageTemplateService);

            return(await JsonHtml("Properties", model));
        }