You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/* Click on row, show details */
|
|
|
|
|
$('.seriesTable a').live('click', function (event) {
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|