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
| $(document).ready(function () {
//$('#'+documentId+' .papyrusLienimagePapyrus').each(function(){
$('.papyrusLienimagePapyrus').each(function(){
new AjaxUpload(this, {
action: urlEnregistrerZoneImage,
name: 'fichier',
data: {
//envoi de l'id de l'image dans le formBean et le documentId
documentId : documentId,
zoneId : this.id,
},
onSubmit : function(file, ext){
$('#etatModification').html('<img src="/images/ajax-loader.gif"></img> Upload de l\'image');
this.disable();
},
onComplete: function(file, response){
this.enable();
afficherImageUploadee(this._button.id,file);
},
error: function(xhr,err,e){
$('#etatModification').text('Erreur dans le chargement de votre image');
}
});
});
}); |