48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
|
$(document).ready(function(){
|
||
|
$('div.lien').click(function(e){
|
||
|
e.preventDefault();
|
||
|
var text = $(this).children('span').html();
|
||
|
var title = $(this).children('a').attr('title');
|
||
|
var dialogOpts = {
|
||
|
bgiframe: true,
|
||
|
title: title,
|
||
|
width: 500,
|
||
|
height: 350,
|
||
|
modal: true,
|
||
|
open: function(event, ui) { $(this).html(text); },
|
||
|
buttons: {
|
||
|
'Fermer': function() { $(this).dialog('close'); }
|
||
|
},
|
||
|
close: function() { $('#cadreinfo').remove(); }
|
||
|
};
|
||
|
$('<div id="cadreinfo"></div>').dialog(dialogOpts);
|
||
|
return false;
|
||
|
});
|
||
|
|
||
|
$('input[name=telechargementjsCase]:checkbox').click(function() {
|
||
|
if ($('input[name=telechargementjsCase]:checkbox').attr('checked') &&
|
||
|
$('input[name=telechargementjsCase2]:checkbox').attr('checked')) {
|
||
|
var ok = confirm('Le Détail et l\'option Tous les clients' +
|
||
|
' ont été selectionnées, le téléchargement' +
|
||
|
' risque d\'être long. Voulez-vous continuez ?');
|
||
|
if (!ok) {
|
||
|
$('input[name=telechargementjsCase]:checkbox').
|
||
|
attr('checked', false);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
$('input[name=telechargementjsCase2]:checkbox').click(function() {
|
||
|
if ($('input[name=telechargementjsCase]:checkbox').attr('checked') &&
|
||
|
$('input[name=telechargementjsCase2]:checkbox').attr('checked')) {
|
||
|
var ok = confirm('Le Détail et l\'option Tous les clients' +
|
||
|
' ont été selectionnées, le téléchargement' +
|
||
|
' risque d\'être long. Voulez-vous continuez ?');
|
||
|
if (!ok) {
|
||
|
$('input[name=telechargementjsCase2]:checkbox').
|
||
|
attr('checked', false);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
});
|