2010-10-24 07:46:58 +00:00
|
|
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<IEnumerable<NzbDrone.Core.Instrumentation.Log>>" %>
|
|
|
|
|
|
|
|
<%@ Import Namespace="Telerik.Web.Mvc.UI" %>
|
2010-10-24 17:35:58 +00:00
|
|
|
<asp:Content ContentPlaceHolderID="Scripts" runat="server">
|
|
|
|
<script type="text/javascript">
|
|
|
|
function onRowDataBound(e) {
|
|
|
|
|
|
|
|
e.row.style.boarder = "";
|
|
|
|
|
|
|
|
if (e.dataItem.Level == 3) {
|
|
|
|
e.row.style.backgroundColor = "#FFD700";
|
|
|
|
}
|
|
|
|
else if (e.dataItem.Level == 4) {
|
|
|
|
e.row.style.backgroundColor = "#FF7500";
|
|
|
|
}
|
|
|
|
else if (e.dataItem.Level == 5) {
|
|
|
|
e.row.style.backgroundColor = "black";
|
|
|
|
e.row.style.Color = "white";
|
|
|
|
}
|
|
|
|
//e.row.style.color = 'blue';
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</asp:Content>
|
2010-10-24 07:46:58 +00:00
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
|
|
Logs
|
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Menu" ContentPlaceHolderID="ActionMenu" runat="server">
|
|
|
|
<%
|
|
|
|
Html.Telerik().Menu().Name("logMenu").Items(items => items.Add().Text("Clear Logs").Action("Clear", "Log")).Render();
|
|
|
|
%>
|
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<%Html.Telerik().Grid(Model).Name("logs")
|
|
|
|
.Columns(columns =>
|
|
|
|
{
|
|
|
|
columns.Bound(c => c.Time).Title("Time").Width(190);
|
|
|
|
//columns.Bound(c => c.Time).Title("Time").Template(c => c.Time.ToShortTimeString()).Groupable(false);
|
|
|
|
columns.Bound(c => c.DisplayLevel).Title("Level").Width(0);
|
|
|
|
columns.Bound(c => c.Message);
|
|
|
|
})
|
|
|
|
.DataBinding(dataBinding => dataBinding.Ajax().Select("_AjaxBinding", "Log"))
|
2010-10-24 17:35:58 +00:00
|
|
|
.DetailView(detailView => detailView.ClientTemplate(
|
|
|
|
|
|
|
|
"<div><#= Logger #></div>" +
|
|
|
|
"<div><#= ExceptionType #></div>" +
|
|
|
|
"<div><#= ExceptionMessage #></div>" +
|
|
|
|
"<div><#= ExceptionString #></div>"
|
|
|
|
|
|
|
|
))
|
2010-10-24 07:46:58 +00:00
|
|
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.Time).Descending()).Enabled(true))
|
|
|
|
.Pageable(c => c.PageSize(50).Position(GridPagerPosition.Both).Style(GridPagerStyles.PageInput | GridPagerStyles.NextPreviousAndNumeric))
|
|
|
|
//.Groupable()
|
|
|
|
.Filterable()
|
2010-10-24 17:35:58 +00:00
|
|
|
.ClientEvents(c => c.OnRowDataBound("onRowDataBound"))
|
2010-10-24 07:46:58 +00:00
|
|
|
//.Groupable(grouping => grouping.Groups(groups => groups.Add(c => c.Time.Date)).Enabled(true))
|
|
|
|
.Render();
|
|
|
|
%>
|
|
|
|
</asp:Content>
|