Radarr/NzbDrone.Web/Scripts/NzbDrone/grid.js

38 lines
860 B
JavaScript
Raw Normal View History

/* Click on row, show details */
$('.seriesTable a').live('click', function (event) {
2012-02-07 06:47:02 +00:00
if ($(this).attr('onclick'))
return;
event.preventDefault();
var link = $(this).attr('href');
window.location = link;
event.stopPropegation();
});
$('.seriesTable .data-row td:not(:last-child)').live('click', function () {
$(this).parent('tr').next('.detail-row').toggle();
});
function grid_onError(e) {
//Suppress the alert
e.preventDefault();
}
//Highlight rows based on a number of details
function highlightRow(e) {
var row = e.row;
var dataItem = e.dataItem;
var ignored = dataItem.Ignored;
var status = dataItem.Status;
if (ignored) {
$(row).addClass('episodeIgnored');
return;
}
if (status == "Missing") {
$(row).addClass('episodeMissing');
return;
}
}