Implementing Document Type Compositions in the Document Type Editor.

Adds changes to the CMSNode and doc type related class which improves the internal usage of the new model based on IUmbracoEntity.
This commit is contained in:
Morten Christensen
2014-06-11 07:08:38 +02:00
parent 52457fea21
commit 81e56bed9e
11 changed files with 258 additions and 69 deletions

View File

@@ -245,6 +245,7 @@
</area>
<area alias="editcontenttype">
<key alias="allowedchildnodetypes">Allowed child node types</key>
<key alias="contenttypecompositions">Document Type Compositions</key>
<key alias="create">Create</key>
<key alias="deletetab">Delete tab</key>
<key alias="description">Description</key>

View File

@@ -251,6 +251,7 @@
<area alias="editcontenttype">
<key alias="allowedchildnodetypes">Allowed child nodetypes</key>
<key alias="contenttypecompositions">Document Type Compositions</key>
<key alias="create">Create</key>
<key alias="deletetab">Delete tab</key>
<key alias="description">Description</key>

View File

@@ -81,13 +81,20 @@
<asp:CheckBox runat="server" ID="cb_isContainer" Text="Yes" /><br />
</cc2:PropertyPanel>
</cc2:Pane>
<cc2:Pane ID="Pane5" runat="server">
<cc2:PropertyPanel ID="pp_allowedChildren" runat="server" Text="Allowed Child nodetypes">
<asp:CheckBoxList ID="lstAllowedContentTypes" runat="server" EnableViewState="True"/>
<asp:PlaceHolder ID="PlaceHolderAllowedContentTypes" runat="server"/>
</cc2:PropertyPanel>
</cc2:Pane>
<cc2:Pane ID="Pane5" runat="server">
<cc2:PropertyPanel ID="pp_allowedChildren" runat="server" Text="Allowed Child nodetypes">
<asp:CheckBoxList ID="lstAllowedContentTypes" runat="server" EnableViewState="True"/>
<asp:PlaceHolder ID="PlaceHolderAllowedContentTypes" runat="server"/>
</cc2:PropertyPanel>
</cc2:Pane>
<cc2:Pane ID="Pane9" runat="server">
<cc2:PropertyPanel ID="pp_compositions" runat="server" Text="ContentType Compositions">
<asp:CheckBoxList ID="lstContentTypeCompositions" runat="server" EnableViewState="True"/>
<asp:PlaceHolder ID="PlaceHolderContentTypeCompositions" runat="server"/>
</cc2:PropertyPanel>
</cc2:Pane>
</asp:Panel>