【发布时间】:2014-01-07 12:12:18
【问题描述】:
我正在使用带有“onheaderclick”属性的tabPanels,如下所示
<rich:tabPanel id="integrationCenterTabPanel" activeItem="#{integrationCentralOverviewAction.activeTab}" switchType="ajax">
<a4j:jsFunction name="clearSelections"
action="#{integrationCentralOverviewAction.clearSelections}"
/>
<rich:tab id="invoiceTab" header="#{messages.invoices}"
immediate="true" name="invoiceTab" onheaderclick="clearSelections();">
*************
*************
</rich:tab>
<rich:tab id="customerTab" header="#{messages.customers}"
immediate="true" name="customerTab" onheaderclick="clearSelections();">
***************
**************
</rich:tab>
并且我无法通过单击标题在选项卡之间切换,当我删除 onheaderclick 属性时它工作正常。我在这里做错了什么!
【问题讨论】: