extranet/public/themes/default/scripts/evaluation.js

23 lines
526 B
JavaScript

$(document).ready(function()
{
$('#customRapport').on('click', function(e){
e.preventDefault();
var url = $(this).attr('href');
var title = $(this).attr('title');
var dialogOpts = {
bgiframe: true,
title: title,
width: 500,
height: 420,
modal: true,
open: function(event, ui) {
$(this).html('Chargement...');
$(this).load(url);
},
close: function() { $('#dialogcustomrapport').remove(); }
};
$('<div id="dialogcustomrapport"></div>').dialog(dialogOpts);
return false;
});
});