I'm using Primefaces 3.0.M4-Snapshot and I'm trying to integrate the new fileUpload component: http://www.primefaces.org/showcase-labs/ui/fileUploadSingle.jsf (it looks nicer like a toolbar), but when I run the page the fileUpload looks exactly like the old one: http://www.primefaces.org/showcase/ui/fileUploadSingle.jsf...
I'm using the latest namespace: xmlns:p="http://primefaces.org/ui"
This is my primefaces code:
<h:form enctype="multipart/form-data">
<p:fileUpload fileUploadListener="#{fileUploadController.handleFileUpload}" mode="advanced"
update="messages" sizeLimit="100000" allowTypes="/(\.|\/)(gif|jpe?g|png)$/" />
<p:growl id="messages" showDetail="true"/>
</h:form>
Has anyone encountered this problem?
xmlns:p="http://primefaces.org/ui"would not work - spauny"NetworkError: 404 Not Found - http://localhost:8090/CreazioneV49/images/themes/"... CreazioneV49 is my project name but why is it searching for that folder: images/themes? - spauny