Hi, I'm using the <x:panelTabbedPane> tag, but I have noticed that it does not update the model, since it sets 'renderResponse=true' in the Apply Request Values phase.
Since this could be the desired behaviour for most cases, it is definitively not the desired one for my application. This is due to the fact, that I have a typical search form, where several criterion can be entered by the user, so when he clicks the search button, the result is presented using two DataTables inside the Tabbed Panel: * One tab with one DataTable to display all the objects matching the criteria that are ACTIVE * Other tab with one DataTable to display all the objects that are INACTIVE But as this component does not update the model, when I change from one tab to the other, I loose all the criteria, resulting in a non-desirable effect, because when the user gets back to the original tab, his search has been overwritten. I know that if making beans to be session-scoped, this problem would be solved, but I have critical constraints with session memory, so I want to keep the most of my beans as request-scoped. Any ideas?

