Advertisement
Guest User

Pagina

a guest
May 30th, 2015
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.94 KB | None | 0 0
  1. <ui:composition template="/WEB-INF/template/LayoutPadrao.xhtml"
  2.     xmlns="http://www.w3.org/1999/xhtml"
  3.     xmlns:h="http://java.sun.com/jsf/html"
  4.     xmlns:f="http://java.sun.com/jsf/core"
  5.     xmlns:ui="http://java.sun.com/jsf/facelets"
  6.     xmlns:p="http://primefaces.org/ui" xmlns:o="http://omnifaces.org/ui">
  7.  
  8.    
  9.     <ui:define name="titulo">Novo pedido </ui:define>
  10.  
  11.     <ui:define name="corpo">
  12.         <h:body>
  13.          <h:form enctype="multipart/form-data">
  14.         <p:fileUpload fileUploadListener="#{teste.upload}" fileLimit="10" fileLimitMessage="Excedido Limite de arquivos"
  15.            cancelLabel="Cancelar" label="Arquivo" uploadLabel="Anexar"
  16.  
  17.            invalidFileMessage="Somente arquivos .jpg, .png ou .gif"
  18.            allowTypes="/(\.|\/)(gif|jpe?g|png)$/" value="#{teste.file}"
  19.            mode="advanced" skinSimple="true" />
  20.         <p:commandButton value="Enviar" ajax="false" />
  21.         </h:form>
  22.             </h:body>
  23.     </ui:define>
  24. </ui:composition>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement