Hope you can help me with this. I am working on a mobile interface for a website using primefaces mobile and I have some problems implementing a navigation button.
My jsf code looks like this:
<h:form rendered="#{sessionManager.loggedIn}" id="workorders">
<p:commandButton value="#{msg.work_orders_search}" process="workorders"
action="workorders.xhtml?faces-redirect=true" />
This works fine in Firefox and Chrome, but when I test it in Safari on an Ipad it does not work anymore. If I change the command button to:
<p:commandButton value="#{msg.work_orders_search}" process="workorders" ajax="false"
action="workorders.xhtml?faces-redirect=true" />
I added "ajax=false" it works fine in Safari (on the ipad) and Chrome but it stops working in Firefox.
Can you see what am I doing wrong?
Thx in advance!
Found a fix. I changed <p:commandButtom> with <h:commandButton> and it worked. Please let me know if you know where I can read more about the differences between the two.
<h:commandButton>in your code, not<p:commandButton>. Please pay attention how you formulate the question and what code you post. – BalusC Jul 5 '12 at 18:50