I don't think this can work unless you're using server-side tab switching.
The client-side tab switching is all javascript, and never triggers a
request back to the server.

On 11/17/05, Louis Burroughs <[EMAIL PROTECTED]> wrote:
>
> When I run this in debug mode the public void
> processTabChange(TabChangeEvent arg0) is not getting called on my tab change
> listener.  I can see where the listener is registered, but it appears that
> the tab change event never fires.  I have also noticed in the public Object
> saveState(FacesContext context) method, _selectedIndex is always null.  Do I
> have some thing misconfigured or is this a bug?
>
>
> <t:panelTabbedPane selectedIndex="#{project.selectedTab}">
>         <t:tabChangeListener
> type="com.xxxxxx.ptw.ui.ProjectPanelListener" />
>         <t:panelTab title="Info" label="Project Info">
>                 <jsp:include page="project.jsp" />
>         </t:panelTab>
>         <t:panelTab title="Databases" label="Databases">
>                 <jsp:include page="db_view.jsp" />
>         </t:panelTab>
>         <t:panelTab title="Notes" label="Notes">
>                 <jsp:include page="notes.jsp" />
>         </t:panelTab>
>         <t:panelTab title="Issues" label="Issues">
>                 <jsp:include page="issues.jsp" />
>         </t:panelTab>
>         <t:panelTab title="Junctions" label="Junctions">
>                 <jsp:include page="junctions.jsp" />
>         </t:panelTab>
> </t:panelTabbedPane>
>
>
> Louis M. Burroughs III

Reply via email to