I need to know how to handle the server return to display that the uploaded file was not saved!
The server return object:
public class JsonReturn
{
public bool Ok { get; set; }
public int LinhasAfetadas { get; set; }
public string Mensagem { get; set; }
public string Log { get; set; }
public object Dados { get; set; }
public int Id { get; set; }
}
Below is the DropZone call:
<script type="javascript">
Dropzone.options.dropzoneForm = {
dictDefaultMessage: "Arraste os recibos até aqui, ou clique para selecionar!",
dictInvalidFileType: "ERRO: Tipo de arquivo não permitido!",
acceptedFiles: "application/pdf",
success: function() { /* COMO DEVO TRATAR O RETORNO FAZENDO QUE SEJA EXIBIDO O "X" E O ERRO PERSONALIZADO ?*/},
};
</script>