exclude component from process when form is submited

lllvlllario

New Member
Q: What syntax should i use to exclude a component when submitting a form using primefaces?Using the process attribute i know how to include components.\[code\]<h:inputText id="included"/><p:commandButton value="http://stackoverflow.com/questions/14073406/button" process="included" actionListener="#{myBean.doStuff}/>\[/code\]I've been trying to play around with syntax similiar to what is used in the answer here: How to exclude child component in ajax update of a parent component? but cant get it to work\[code\]<h:inputText id="notIncluded" styleClass="notIncluded"/><p:commandButton ... process="@(form :not(.notIncluded))"/>\[/code\]
 
Back
Top