You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
4.4 KiB
120 lines
4.4 KiB
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<NzbDrone.Web.Models.QualityModel>" %>
|
|
<%@ Import Namespace="NzbDrone.Core.Repository.Quality" %>
|
|
<%@ Import Namespace="NzbDrone.Web.Helpers" %>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
var options = {
|
|
target: '#result',
|
|
beforeSerialize: saveOrder,
|
|
beforeSubmit: showRequest,
|
|
success: showResponse,
|
|
type: 'post',
|
|
resetForm: false
|
|
};
|
|
$('#form').ajaxForm(options);
|
|
$.simpledropdown("#dropdown1");
|
|
|
|
});
|
|
|
|
function saveOrder(jqForm, options) {
|
|
//Save the order of the sortable
|
|
|
|
var sortResult = $('#sortable').sortable("toArray");
|
|
|
|
var firstPart = "Indexers_";
|
|
var secondPart = "__Order";
|
|
|
|
jQuery.each(sortResult, function (index, value) {
|
|
var id = firstPart + value + secondPart;
|
|
var newValue = index + 1;
|
|
$("#" + id).val(newValue);
|
|
});
|
|
}
|
|
|
|
function showRequest(formData, jqForm, options) {
|
|
$("#result").empty().html('Saving...');
|
|
$("#form :input").attr("disabled", true);
|
|
}
|
|
|
|
function showResponse(responseText, statusText, xhr, $form) {
|
|
$("#result").empty().html(responseText);
|
|
$("#form :input").attr("disabled", false);
|
|
}
|
|
|
|
</script>
|
|
|
|
<style type="text/css">
|
|
#sortable { list-style-type: none; margin: 0; padding: 0; width: 30%; }
|
|
#sortable li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; height: 1.5em; }
|
|
#sortable li { height: 1.5em; line-height: 1.2em; }
|
|
.ui-state-highlight { height: 1.5em; line-height: 1.2em; }
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
$("#sortable").sortable({
|
|
placeholder: "ui-state-highlight"
|
|
});
|
|
$("#sortable").disableSelection();
|
|
});
|
|
</script>
|
|
|
|
<% using (Html.BeginForm("SaveQuality", "Settings", FormMethod.Post, new { id = "form", name = "form" }))
|
|
{%>
|
|
<fieldset>
|
|
<legend>Quality</legend>
|
|
<%: Html.ValidationSummary(true, "Unable to save your settings. Please correct the errors and try again.") %>
|
|
|
|
<div class="rightSide" style="float: right; width: 65%;">
|
|
<div id="defaultQualityDiv" style="float: left; margin: 30px;">
|
|
|
|
<div class="config-group" style="width: 250px; margin-bottom: 5px; margin-left: 5px;">
|
|
<div class="config-title"><%= Html.LabelFor(m => m.DefaultProfileId)%></div>
|
|
<div class="config-value"><%: Html.DropDownListFor(m => m.DefaultProfileId, Model.SelectList)%></div>
|
|
<div class="config-validation"><%= Html.ValidationMessageFor(m => m.DefaultProfileId)%></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="leftSide" style="width:35%;">
|
|
<div style="padding-top: 10px;">
|
|
<div style="padding-left: 7px; margin-bottom: 5px;">
|
|
<a id="addItem" style="text-decoration:none;" href="<%: Url.Action("AddUserProfile", "Settings") %>">
|
|
<img src="../../Content/Images/Plus.png" alt="Add New Profile" />
|
|
<h4 style="margin-left: 3px; display: inline; color: Black;">Add New Profile</h4></a>
|
|
</div>
|
|
|
|
<div id="user-profiles">
|
|
<%foreach (var item in Model.UserProfiles) { %>
|
|
<% Html.RenderPartial("UserProfileSection", item); %>
|
|
<% } %>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="margin-top: 10px; padding-left: 5px;">
|
|
<input type="submit" class="button" value="Save" />
|
|
</div>
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<%}%>
|
|
<div id="result"></div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$("#addItem").click(function () {
|
|
$.ajax({
|
|
url: this.href,
|
|
cache: false,
|
|
success: function (html) { $("#user-profiles").prepend(html); }
|
|
});
|
|
return false;
|
|
});
|
|
|
|
$("a.deleteRow").live("click", function () {
|
|
$(this).parents("div.userProfileSectionEditor:first").remove();
|
|
return false;
|
|
});
|
|
</script> |