push files

This commit is contained in:
2024-05-07 11:47:54 -05:00
parent 75cd74930c
commit 0264594936
124 changed files with 3240 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
<h:form>
<p:growl id="localForm1Growl" showDetail="true" life="3000"
redisplay="true" />
<p:fileUpload id="upload" value="#{fileUploadBean}"
mode="advanced"
process="@this"
listener="#{fileUploadBean.handleFileUpload}"
dragDropSupport="true"
update="localForm1Growl"
label="Add a file"
uploadLabel=" upload all"
cancelLabel="discard all"
>
<p:dataTable >
<p:column>
</p:column >
</p:dataTable>
</p:fileUpload>
</h:form>
</h:body>
</html>