Fixes display order (U4-4347)

This commit is contained in:
Shannon
2014-11-21 09:49:29 +11:00
parent 9b6ab24890
commit d34255b1fc

View File

@@ -2,15 +2,17 @@
<%@ Register TagPrefix="cc1" Namespace="umbraco.uicontrols" Assembly="controls" %>
<cc1:Pane runat="server">
<cc1:PropertyPanel runat="server" text="Master Document Type" ID="pp_mastertypes">
<asp:ListBox id="masterType" Runat="server" cssClass="bigInput input-large-type input-block-level" Rows="1" SelectionMode="Single"></asp:ListBox>
<asp:Literal ID="masterTypePreDefined" runat="server" Visible="false"></asp:Literal>
</cc1:PropertyPanel>
<cc1:PropertyPanel runat="server" id="pp_name" text="Name">
<asp:TextBox id="rename" Runat="server" CssClass="bigInput input-large-type input-block-level"></asp:TextBox>
<asp:RequiredFieldValidator id="RequiredFieldValidator1" ErrorMessage="*" ControlToValidate="rename" runat="server">*</asp:RequiredFieldValidator>
</cc1:PropertyPanel>
<cc1:PropertyPanel runat="server" text="Master Document Type" ID="pp_mastertypes">
<asp:ListBox id="masterType" Runat="server" cssClass="bigInput input-large-type input-block-level" Rows="1" SelectionMode="Single"></asp:ListBox>
<asp:Literal ID="masterTypePreDefined" runat="server" Visible="false"></asp:Literal>
</cc1:PropertyPanel>
<cc1:PropertyPanel runat="server">
<asp:CheckBox ID="createTemplate" Runat="server" Checked="true" Text="Create matching template"></asp:CheckBox>