Radarr/NzbDrone.Web/Views/Log/Index.cshtml

62 lines
2.4 KiB
Plaintext
Raw Normal View History

@using NzbDrone.Core.Instrumentation
@model IEnumerable<NzbDrone.Core.Instrumentation.Log>
@section Scripts{
2010-10-24 17:35:58 +00:00
<script type="text/javascript">
function onRowDataBound(e) {
e.row.style.boarder = "";
2011-04-22 05:49:50 +00:00
if (e.dataItem.Level == "Warn") {
2010-10-24 17:35:58 +00:00
e.row.style.backgroundColor = "#FFD700";
}
2011-04-22 05:49:50 +00:00
else if (e.dataItem.Level == "Error") {
2010-10-24 17:35:58 +00:00
e.row.style.backgroundColor = "#FF7500";
}
2011-04-22 05:49:50 +00:00
else if (e.dataItem.Level == "Fatal") {
2010-10-24 17:35:58 +00:00
e.row.style.backgroundColor = "black";
e.row.style.color = "red";
2010-10-24 17:35:58 +00:00
}
//e.row.style.color = 'blue';
}
</script>
}
@section TitleContent{
Logs
}
@section ActionMenu{
@{Html.RenderPartial("SubMenu");}
}
@section MainContent{
@{Html.Telerik().Grid<Log>().Name("logsGrid")
.TableHtmlAttributes(new { @class = "Grid" })
2011-04-10 02:44:01 +00:00
.Columns(columns =>
{
2011-07-04 05:23:38 +00:00
columns.Bound(c => c.Time).Title("Time").Width(0);
columns.Bound(c => c.Level).Title("Level").Width(0);
2011-07-04 05:23:38 +00:00
columns.Bound(c => c.Logger).Title("Source").Width(0);
2011-04-10 02:44:01 +00:00
columns.Bound(c => c.Message);
})
.DetailView(detailView => detailView.ClientTemplate(
2011-07-04 05:23:38 +00:00
"<div>Method: <#= Method #></div>" +
2011-05-21 00:21:31 +00:00
"<div><#= ExceptionType #></div>" +
"<div class='stackframe'><#= Exception #></div>"
))
.DataBinding(data => data
.Ajax()
.OperationMode(GridOperationMode.Client)
.Select("_TopAjaxBinding", "Log"))
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Time).Descending()).Enabled(true))
2011-05-21 00:21:31 +00:00
.Pageable(c => c.PageSize(50).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious))
.Filterable()
2011-04-10 02:44:01 +00:00
.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
.Render();}
}
<script type="text/javascript">
function reloadGrid() {
var grid = $('#logsGrid').data('tGrid');
grid.rebind();
}
</script>