23 lines
526 B
JavaScript
Raw Normal View History

2011-09-02 09:44:09 +00:00
$(document).ready(function()
{
$('#customRapport').on('click', function(e){
2011-09-02 09:44:09 +00:00
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;
});
2011-09-02 10:27:31 +00:00
});