Search history details error removed

Fixed: Search History Details will not show an error when loaded
This commit is contained in:
Mark McDowall 2012-07-05 18:01:25 -07:00
parent a087c89903
commit 92bd547315
2 changed files with 7 additions and 2 deletions

View File

@ -5,6 +5,11 @@ namespace NzbDrone.Web.Models
{
public class SearchItemModel
{
public SearchItemModel()
{
Details = "";
}
public int Id { get; set; }
public string ReportTitle { get; set; }
public string Indexer { get; set; }

View File

@ -21,11 +21,11 @@
.AddColumn(new Column().DisplayAndSort("Quality", "QualityInt").Title("Quality").Width("80px"))
.AddColumn(new Column().DataProperty("SearchError").Title("Error"))
.AddColumn(new Column().DataProperty("return actionColumn(source, type, val);", true).Sortable(false).Searchable(false))
.AddColumn(new Column().DataProperty("Details").RenderFunction("return getDetails(row, val);").Visible(false))
.AddColumn(new Column().DataProperty("Details").Sortable(false).Visible(false).RenderFunction("return details(row);"))
.AddSorting(3, SortDirection.Desc))
<script type="text/javascript">
function getDetails(row, val) {
function details(row) {
var result = "<a href=\"" + row.aData["NzbInfoUrl"] + "\">Nzb Info</a><br/>" +
"<b>Proper: </b>" + row.aData["Proper"] + " <br/>" +
"<b>Age: </b>" + row.aData["Age"] + " days<br/>" +