jsf - p:commandButton breaks after prettyfaces integration -


i have xhtml-form, should submitted after clicking p:commanbutton. button looks this:

<p:commandbutton value="#{msg['formsubmit']}" ajax="false" action="#{quote.submit}" icon="ui-icon-check" /> 

after integrating prettyfaces button doesn't work anymore. method on bean named quote doesn't invoked. had html-output, couldn't see differences between before- , after prettyfaces-html. tested same code when removing specific pretty-faces-mapping. works fine ...

i use prettyfaces url-mapping:

<url-mapping id="quote">     <pattern value="/quote" />     <view-id value="/sendquote.jsf" /> </url-mapping> 

i use:

  • primefaces 5.2
  • jsf 2.2 (mojarra)
  • prettyfaces-jsf2-3.3.3
  • tomcat 8.0
  • ... tried rewrite 3.00 -> same result

any suggestions? in advance


Comments

Popular posts from this blog

c++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -