1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
| //***********************
// PARAMETRAGE DU TABLEAU
//***********************
var table = $('#datatable').dataTable({
language: {
"sProcessing": "Chargement en cours",
"sLengthMenu": "Afficher _MENU_ lignes par page",
"sZeroRecords": "Aucun enregistrement",
"sInfo": "Affichage de la ligne _START_ à _END_ sur _TOTAL_",
"sInfoEmpty": "",
"sInfoFiltered": "(_MAX_ total)",
"sSearch": "Rechercher : ",
"oPaginate": { "sFirst": "Première page", "sPrevious": "Page précédente", "sNext": "Page suivante", "sLast": "Dernière page" }
},
columns: [
{ "orderable": true },
{ "orderable": true },
{ "orderable": true },
{ "orderable": true },
{ "orderable": true },
{ "orderable": true },
{ "orderable": false },
{ "orderable": false }
],
});
//******************************
// MODIFICATION D'UN DEFIBRILLATEUR
//******************************
$('[id$="btnModifier"]').unbind('click').bind('click', function () {
var IDDef = $(this).parent().attr("id");
var IDClient = $(this).parent().attr("title");
window.location = 'detail.aspx?Res=' + IDDef + '&ResC=' + IDClient;
});
//*****************************
// SUPPRESSION D'UN DEFIBRILLATEUR
//*****************************
$('[id$="btnSupprimer"]').unbind('click').bind('click', function () {
if (confirm('Confirmez-vous la suppression du défibrillateur ?')) {
var UserDeleteID = $(this).parent().attr("id");
$.ajax({
url: "liste.aspx",
type: "POST",
data: {
action: "Delete",
ID: UserDeleteID
},
success: function (response) {
if (response.d = "success") {
window.location = "liste.aspx";
}
},
});
} else { return false; };
});
$('#menu_def').hide();
$('[id$="btn_Menu"]').unbind('click').bind('click', function () {
if ($('[id$="hfMenu"]').val() == "Ouvert") {
$('[id$="hfMenu"]').val("Fermé")
$('#menu_def').hide();
} else {
$('[id$="hfMenu"]').val("Ouvert")
$('#menu_def').show();
}
}); |