If you have a Tobago
page that is a tabset.(outer tabset)
and within one of
the tabs is another tabset (inner tabset).
If you have the
construct below in one of the tabs of the innr tabset:
<t:selectOneChoice label="Chart type"
value="#{statistics.chartType}" tip="Choose a chart type to
display">
<f:selectItems value="#{statistics.chartTypesList}"/>
</t:selectOneChoice>
<f:selectItems value="#{statistics.chartTypesList}"/>
</t:selectOneChoice>
The
outer tabset will cease to be able to change tabs once you go to the outer
tabset's tab that contains the inner tabset.
The inner tabset will still change
tabs.
If you have two tabs on
the inner tabset - one with the construct above and one without, you can click
on the inner tab that does NOT contain the construct and once sitting on the
non-construct inner tab, you can then click on an outer tab and it will
work.
I'm thinking it's a problem with the myfaces f: tag
being used for the items list.
John

