mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
system/config is now editable
This commit is contained in:
parent
cb4d0e2450
commit
24c47801b3
@ -6,6 +6,7 @@
|
||||
using NzbDrone.Core.Providers;
|
||||
using NzbDrone.Core.Providers.Core;
|
||||
using NzbDrone.Core.Providers.Jobs;
|
||||
using Telerik.Web.Mvc;
|
||||
|
||||
namespace NzbDrone.Web.Controllers
|
||||
{
|
||||
@ -39,5 +40,27 @@ public ActionResult Config()
|
||||
}
|
||||
|
||||
|
||||
[GridAction]
|
||||
public ActionResult _SelectAjaxEditing()
|
||||
{
|
||||
return View(new GridModel(_configProvider.All()));
|
||||
}
|
||||
|
||||
[AcceptVerbs(HttpVerbs.Post)]
|
||||
[GridAction]
|
||||
public ActionResult _SaveAjaxEditing(string key, string value)
|
||||
{
|
||||
_configProvider.SetValue(key, value);
|
||||
return View(new GridModel(_configProvider.All()));
|
||||
}
|
||||
|
||||
[AcceptVerbs(HttpVerbs.Post)]
|
||||
[GridAction]
|
||||
public ActionResult _InsertAjaxEditing(string key, string value)
|
||||
{
|
||||
|
||||
_configProvider.SetValue(key, value);
|
||||
return View(new GridModel(_configProvider.All()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,33 @@
|
||||
@model IEnumerable<NzbDrone.Core.Repository.Config>
|
||||
@section TitleContent{
|
||||
Config
|
||||
Configuration
|
||||
}
|
||||
@section MainContent{
|
||||
@{Html.Telerik().Grid(Model).Name("Grid")
|
||||
@(Html.Telerik().Grid<NzbDrone.Core.Repository.Config>()
|
||||
.Name("Grid")
|
||||
.TableHtmlAttributes(new { @class = "Grid" })
|
||||
.Render();}
|
||||
.DataKeys(keys =>
|
||||
{
|
||||
keys.Add(p => p.Key);
|
||||
})
|
||||
.ToolBar(commands => commands.Insert().ButtonType(GridButtonType.Image))
|
||||
.DataBinding(dataBinding =>
|
||||
{
|
||||
dataBinding.Ajax()
|
||||
.Select("_SelectAjaxEditing", "System")
|
||||
.Insert("_InsertAjaxEditing", "System")
|
||||
.Update("_SaveAjaxEditing", "System");
|
||||
})
|
||||
.Columns(columns =>
|
||||
{
|
||||
columns.Bound(p => p.Key);
|
||||
columns.Bound(p => p.Value);
|
||||
columns.Command(commands =>
|
||||
{
|
||||
commands.Edit().ButtonType(GridButtonType.Image);
|
||||
}).Width(0).Title("Actions");
|
||||
})
|
||||
.Editable(editing => editing.Mode(GridEditMode.InLine))
|
||||
.Sortable()
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user