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.
97 lines
2.6 KiB
97 lines
2.6 KiB
/* Click on row, show details */
|
|
$('.seriesTable a, .dataTable a').live('click', function (event) {
|
|
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 () {
|
|
if ($(this).closest('table').hasClass('no-details'))
|
|
return;
|
|
$(this).parent('tr').next('.detail-row').toggle();
|
|
});
|
|
|
|
function grid_onError(e) {
|
|
//Suppress the alert
|
|
e.preventDefault();
|
|
}
|
|
|
|
//Perform the details opening
|
|
var oTable;
|
|
|
|
$('.dataTable td:not(:last-child)').live('click', function () {
|
|
if ($(this).closest('table').hasClass('no-details'))
|
|
return;
|
|
|
|
var nTr = this.parentNode;
|
|
|
|
if ($(nTr).hasClass('details-opened')) {
|
|
oTable.fnClose(nTr);
|
|
$(nTr).removeClass('details-opened');
|
|
}
|
|
|
|
else {
|
|
oTable.fnOpen(nTr, fnFormatDetails(nTr), 'Details');
|
|
$(nTr).addClass('details-opened');
|
|
}
|
|
});
|
|
|
|
//Datatables format display details
|
|
function fnFormatDetails(nTr) {
|
|
var aData = oTable.fnGetData(nTr);
|
|
return aData["Details"];
|
|
}
|
|
|
|
//Create Image
|
|
function createImageAjaxLink(url, image, alt, title, classes) {
|
|
var html = "<a onclick=\"Sys.Mvc.AsyncHyperlink.handleClick(this, new Sys.UI.DomEvent(event), { insertionMode: Sys.Mvc.InsertionMode.replace });\" href=\"" + url + "\">" +
|
|
"<img class=\"" + classes + "\" src=\"" + image + "\" title=\"" + title + "\" alt=\"" + alt + "\"></a>";
|
|
|
|
return html;
|
|
}
|
|
|
|
//Reload/Redraw the grid from the server (bServerSide == true)
|
|
function redrawGrid() {
|
|
oTable.fnDraw();
|
|
}
|
|
|
|
//Force reload using Ajax Binding (bServerSide == false)
|
|
function reloadGrid() {
|
|
oTable.fnReloadAjax();
|
|
}
|
|
|
|
|
|
//SignalR
|
|
$(function () {
|
|
// Proxy created on the fly
|
|
var signalRProvider = $.connection.signalRProvider;
|
|
|
|
// Declare a function on the chat hub so the server can invoke it
|
|
signalRProvider.updatedStatus = function (episodeId, episodeStatus) {
|
|
var imageSrc = '../../Content/Images/' + episodeStatus + '.png';
|
|
var row = $('tr.episodeId_' + episodeId);
|
|
|
|
if (row.length == 0)
|
|
return;
|
|
|
|
var statusImage = $(row).find('img.statusImage');
|
|
|
|
if (statusImage.length == 0)
|
|
return;
|
|
|
|
statusImage.attr('alt', episodeStatus);
|
|
statusImage.attr('title', episodeStatus);
|
|
statusImage.attr('src', imageSrc);
|
|
|
|
if (episodeStatus != "Missing") {
|
|
statusImage.parent('td').removeClass('episodeMissing');
|
|
}
|
|
};
|
|
|
|
// Start the connection
|
|
$.connection.hub.start();
|
|
}); |