|
|
@ -11,7 +11,7 @@
|
|
|
|
#sortable1 li { background: #ddd; }
|
|
|
|
#sortable1 li { background: #ddd; }
|
|
|
|
#sortable2 li { background: #DAA2A2; }
|
|
|
|
#sortable2 li { background: #DAA2A2; }
|
|
|
|
.sortableHeader { margin:2px; margin-left:12px }
|
|
|
|
.sortableHeader { margin:2px; margin-left:12px }
|
|
|
|
#sortable1 li.ui-state-highlight, #sortable2 li.ui-state-highlight { background: #fbf5d0; }
|
|
|
|
#sortable1 li.ui-state-highlight, #sortable2 li.ui-state-highlight { background: #fbf5d0; border-color: #065EFE; }
|
|
|
|
.removeDiv { float: left; display:block; }
|
|
|
|
.removeDiv { float: left; display:block; }
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
@ -40,27 +40,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
<div class="userProfileSectionEditor">
|
|
|
|
<div class="userProfileSectionEditor">
|
|
|
|
|
|
|
|
|
|
|
|
<fieldset style="width:275px; margin:5px;">
|
|
|
|
<fieldset style="width:275px; margin:5px; margin-top: 0px; border-color:#CCCCCD">
|
|
|
|
<%--<label><%= Model.Name %></label>--%>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<%= Html.TextBoxFor(m => m.AllowedString, new { @id = "allowedString", @style = "display:none" })%>
|
|
|
|
<div id="qualityHeader" style="padding-bottom: 5px; margin: 0px;">
|
|
|
|
|
|
|
|
<h2 style="display:inline; padding-right: 4px; margin-left: 4px;"><%= Html.DisplayTextFor(m => m.Name) %></h2>
|
|
|
|
|
|
|
|
<a href="#" class="deleteRow"><img src="../../Content/Images/X.png" alt="Delete" /></a>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="config-group" style="width: 250px">
|
|
|
|
<div class="config-group" style="width: 250px; margin-bottom: 5px; margin-left: 5px;">
|
|
|
|
<div class="config-title"><%= Html.LabelFor(x => x.Name)%></div>
|
|
|
|
<div class="config-title"><%= Html.LabelFor(x => x.Name)%></div>
|
|
|
|
<div class="config-value"><%= Html.TextBoxFor(x => x.Name)%></div>
|
|
|
|
<div class="config-value"><%= Html.TextBoxFor(x => x.Name)%></div>
|
|
|
|
<div class="config-validation"><%= Html.ValidationMessageFor(x => x.Name)%></div>
|
|
|
|
<div class="config-validation"><%= Html.ValidationMessageFor(x => x.Name)%></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="removeDiv"><a href="#" class="deleteRow">Remove</a></div>
|
|
|
|
<div id="sortablesDiv" style="margin: 0px;">
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="hiddenProfileDetails">
|
|
|
|
|
|
|
|
<%= Html.TextBoxFor(x => x.ProfileId, new { @style = "display:none" })%>
|
|
|
|
|
|
|
|
<%= Html.CheckBoxFor(x => x.UserProfile, new { @style = "display:none" })%>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="allowedQualities">
|
|
|
|
<div class="allowedQualities">
|
|
|
|
<h4 class="sortableHeader">Allowed</h4>
|
|
|
|
<h4 class="sortableHeader">Allowed</h4>
|
|
|
|
<ul id="sortable1" class="connectedSortable">
|
|
|
|
<ul id="sortable1" class="connectedSortable">
|
|
|
@ -102,7 +95,12 @@
|
|
|
|
<% } %>
|
|
|
|
<% } %>
|
|
|
|
</ul>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="hiddenProfileDetails">
|
|
|
|
|
|
|
|
<%= Html.TextBoxFor(x => x.ProfileId, new { @style = "display:none" })%>
|
|
|
|
|
|
|
|
<%= Html.CheckBoxFor(x => x.UserProfile, new { @style = "display:none" })%>
|
|
|
|
|
|
|
|
<%= Html.TextBoxFor(m => m.AllowedString, new { @id = "allowedString", @style = "display:none" })%>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|