Is it possible to combine fixed and dynamic tabs in a PF TabView? My use case is creating a tab for each object in an object list dynamically. A fixed tab will hold a form for creating a new object. Once the form is submitted, a new tab with a new object must be added to the TabView.
So far I managed to implement this functionality only with two views - one for displaying objects dynamically and the other one with a form for a new object.
I tried to write a new TabView Renderer that would be able to render both dynamic and fixed tabs. However, if I combine two tab types, PF command button does not function on the fixed tab (I posted this problem here: http://forum.primefaces.org/viewtopic.php?t=20840).
I found a forum post about creating PF Tabs in a managed bean (http://stackoverflow.com/questions/4052581/dynamically-generate-tabs-with-primefaces). I'd like to avoid it if possible to be capable to use PF components declaratively in a .jsf view.