From 6542f687d6e25c2a960808fe63b04fd0c82e75ac Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 5 Jun 2011 00:47:59 -0700 Subject: [PATCH] Fixed History Grid overlay. --- NzbDrone.Web/Views/History/Index.cshtml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/NzbDrone.Web/Views/History/Index.cshtml b/NzbDrone.Web/Views/History/Index.cshtml index 707381460..9e26274a9 100644 --- a/NzbDrone.Web/Views/History/Index.cshtml +++ b/NzbDrone.Web/Views/History/Index.cshtml @@ -39,8 +39,11 @@ History .Pageable( c => c.PageSize(20).Position(GridPagerPosition.Bottom).Style(GridPagerStyles.NextPrevious)) - //.Filterable() - //.ClientEvents(c => c.OnRowDataBound("onRowDataBound")) + .ClientEvents(clientEvents => + { + clientEvents.OnDataBinding("grid_bind"); + clientEvents.OnDataBound("grid_bound"); + }) .Render();} Loading Loading...