Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
it needs to have the ajax="false" since the action is not ajax. the type="submit" is not necessary, because "submit" is the default. it should be working ok; I use p:commandButton with ajax="false" in firefox and works ok.. what do you see in FF? try removing the process attribute, and see if it works – Damian Jul 5 '12 at 13:16
2  
Your question is invalid. You're using <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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.