Can I exclude a specific id from update=":myComponent"?
I have a larger page (with several tables, input fields and so on) which is wrapped in a <p:panel id="outerPanel">. Most of the time, I just execute update=":outerPanel", which works quite fine. But now I’m facing a problem that I have to update the page except for ONE table.
How can I exclude that table (or any component in general) from an update process?
If the ID not to refresh can be identified by some logic (i.e.:
Then you can try building a JSF call using the
jsf.util.chain: (Note this uses Mojarra JSF impl.)And use that above function on the
onClick()oronSubmit()of your form or component: