2013-03-07 08:33:25 +00:00
|
|
|
$(document).ready(function(){
|
|
|
|
|
2011-06-27 16:08:18 +00:00
|
|
|
$('.rs').click(function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
var item = $(this);
|
|
|
|
$.post(item.attr('href'),
|
|
|
|
function(data){ item.replaceWith('<b>'+data+'</b>'); }
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2011-08-04 16:00:20 +00:00
|
|
|
$('select.changeEtat').change(function(e){
|
|
|
|
e.preventDefault();
|
|
|
|
var commandeEtat = $(this).val();
|
|
|
|
var commandeId = $(this).attr('name');
|
2011-12-13 11:29:10 +00:00
|
|
|
var commandeType = $('input[name=mode]').val();
|
2011-12-13 15:42:00 +00:00
|
|
|
var href = $(this).parent('form').attr('action');
|
|
|
|
$.post(href, { etat: commandeEtat, idCommande: commandeId, mode: commandeType}, function(data){
|
2011-08-04 16:00:20 +00:00
|
|
|
if (data==0){ alert("Une erreur s'est produite...Raffraichir la page!");}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2011-05-10 09:52:12 +00:00
|
|
|
});
|