modifié : SRC/public/js/ListeOeuvre.js
This commit is contained in:
parent
2031282c06
commit
127f3dad65
@ -24,5 +24,32 @@ $(document).ready( function() {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('.listeoeuvre').click(function() {
|
||||||
|
$('#oeuvrePic').empty();
|
||||||
|
url = "/showListOeuvres/" + $(this).children('.idListeOeuvre').val();
|
||||||
|
$.post(url,
|
||||||
|
dataSend,
|
||||||
|
function( data ) {
|
||||||
|
}, "json" )
|
||||||
|
.done(function() {
|
||||||
|
$("#oeuvrePic").append('<div class="alert alert-sucess">'
|
||||||
|
+'<ul>'
|
||||||
|
+'<li>Sauvegarde valider</li>'
|
||||||
|
+'</ul>'
|
||||||
|
+'</div>'
|
||||||
|
})
|
||||||
|
.fail(function() {
|
||||||
|
$("#oeuvrePic").append('<div class="alert alert-danger">'
|
||||||
|
+'<strong>Oouups!</strong> Il y a un problème.<br><br>'
|
||||||
|
+'<ul>'
|
||||||
|
+'<li>Erreur lors de la récupération</li>'
|
||||||
|
+'</ul>'
|
||||||
|
+'</div>'
|
||||||
|
);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user