I'm having a problem with firing an action with a p:commandButton when there's a p:fileUpload on my page: Here's the p:fileUpload
<p:fileUpload auto="true" update="seqForm:sequence1"
allowTypes="/(\.|\/)(txt)$/"
fileUploadListener="#{fileUploadController.fileUploadListener1}" />
and the p:commandButton:
<p:commandButton id="submitButton" value="Submit!"
action="#{submitAction.actionTest}"
update="seqForm:content" />
When I add the fileUpload component to the page, its listener gets normally fired. However, the action of the commandButton doesn't work. If i remove the fileUpload from the page, the action from the button works fine.
Is it a bug or something I still haven't discovered? Thanks in advance.