I have a screen that has the function of sending a file to the server via servlet
but since this file can be large, I needed a panel or a div with a load gif.
I'm using richfaces, already tried to use popupPanel
, div
and give sendRedirect
to another page while running the servlet but nothing worked.
Could someone help me?
HTML
<body>
<div id="templete">
<ui:include src="templete.xhtml" />
</div>
<form method="post" enctype="multipart/form-data" action="/produto-web/FileUploadServlet">
<div id="divUpload">
Selecione um arquivo : <input type="file" style="width: 435px;" id="file" name="file" size="45" />
<input type="submit" class="Button" value="Enviar Arquivo" />
<p style="color: red;" >${messageError}</p>
<p style="color: Green;" >${messageSucess}</p>
</div>
</form>