You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$(function () {
//Quando o usuário arrastar um arquivo pro elemento Upload.
$('#upload').fileupload({
// Url do lado server que vai receber o arquivo
url: '/Services/' + XYZService.Methods.Upload,
type: 'POST',
//Elemento que será usado como dropzone
dropZone: $('#upload'),
//Função pra caso o upload tenha sucesso
done: function () {
Q.information("upload com sucesso.");
},
//Função pra caso o upload falhe
fail: function () {
Q.alert("Erro ao importar arquivo.");
}
}
});
}