I have implemented the file upload controller on my *.xhtml + PF 3.5 Page:
<div class="control-group">
<h:form enctype="multipart/form-data">
<p:messages showDetail="true" />
<p:fileUpload value="#{fileUploadController.file}" mode="simple" />
<p:commandButton value="Submit" ajax="false"
actionListener="#{fileUploadController.upload}" />
</h:form>
</div>
I do not use any styles on the uploader, however, at the moment it looks like that:
I want to let it look like on the PF Page:
What do I have to change? I really appreciate your answer!!!