コード例 #1
0
ファイル: FormatController.cs プロジェクト: QuantumArt/QP
        public async Task <ActionResult> NewTemplateObjectFormat(string tabId, int parentId)
        {
            var format = _formatService.NewTemplateObjectFormatProperties(parentId, _formatService.IsSiteDotNetByObjectId(parentId));
            var model  = ObjectFormatViewModel.Create(format, tabId, parentId, _formatService, false);

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