2012-02-05 21:17:23 +01:00
|
|
|
|
/* Click on row, show details */
|
2012-02-08 09:17:40 +01:00
|
|
|
|
$('.seriesTable a, .dataTable a').live('click', function (event) {
|
2012-02-07 07:47:02 +01:00
|
|
|
|
if ($(this).attr('onclick'))
|
|
|
|
|
return;
|
|
|
|
|
|
2012-02-06 08:47:10 +01:00
|
|
|
|
event.preventDefault();
|
2012-02-05 21:17:23 +01:00
|
|
|
|
var link = $(this).attr('href');
|
|
|
|
|
window.location = link;
|
2012-02-06 08:47:10 +01:00
|
|
|
|
event.stopPropegation();
|
2012-02-05 21:17:23 +01:00
|
|
|
|
});
|
|
|
|
|
|
2012-02-06 23:13:33 +01:00
|
|
|
|
$('.seriesTable .data-row td:not(:last-child)').live('click', function () {
|
2012-02-10 06:26:30 +01:00
|
|
|
|
if ($(this).closest('table').hasClass('no-details'))
|
|
|
|
|
return;
|
2012-02-06 23:13:33 +01:00
|
|
|
|
$(this).parent('tr').next('.detail-row').toggle();
|
2012-02-05 21:17:23 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function grid_onError(e) {
|
2012-01-30 02:38:44 +01:00
|
|
|
|
//Suppress the alert
|
|
|
|
|
e.preventDefault();
|
2012-01-30 07:14:46 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-08 09:17:40 +01:00
|
|
|
|
//Perform the details opening
|
|
|
|
|
var oTable;
|
2012-01-30 07:14:46 +01:00
|
|
|
|
|
2012-02-08 09:17:40 +01:00
|
|
|
|
$('.dataTable td:not(:last-child)').live('click', function () {
|
2012-02-10 06:26:30 +01:00
|
|
|
|
if ($(this).closest('table').hasClass('no-details'))
|
|
|
|
|
return;
|
|
|
|
|
|
2012-02-08 09:17:40 +01:00
|
|
|
|
var nTr = this.parentNode;
|
2012-01-30 07:14:46 +01:00
|
|
|
|
|
2012-02-08 09:17:40 +01:00
|
|
|
|
if ($(nTr).hasClass('details-opened')) {
|
|
|
|
|
oTable.fnClose(nTr);
|
|
|
|
|
$(nTr).removeClass('details-opened');
|
2012-01-30 07:14:46 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-08 09:17:40 +01:00
|
|
|
|
else {
|
2012-02-09 01:26:34 +01:00
|
|
|
|
oTable.fnOpen(nTr, fnFormatDetails(nTr), 'Details');
|
2012-02-08 09:17:40 +01:00
|
|
|
|
$(nTr).addClass('details-opened');
|
2012-01-30 07:14:46 +01:00
|
|
|
|
}
|
2012-02-08 09:17:40 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//Datatables format display details
|
2012-02-09 01:26:34 +01:00
|
|
|
|
function fnFormatDetails(nTr) {
|
2012-02-08 09:17:40 +01:00
|
|
|
|
var aData = oTable.fnGetData(nTr);
|
2012-02-09 01:26:34 +01:00
|
|
|
|
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;
|
2012-01-30 02:38:44 +01:00
|
|
|
|
}
|