我想使用richfaces 4 rich:tabPanel,我有这个代码:
<rich:tabPanel id="tabMenu" switchType="client">
<rich:tab id="overview" header="Overview">
</rich:tab>
<rich:tab id="results" header="Results">
</rich:tab>
</rich:tabPanel>
当我尝试使用tabMenu访问页面时,我得到了这个例外:
java.lang.IllegalArgumentException: Cannot convert client of type class java.lang.String to class org.richfaces.component.SwitchType
at com.sun.el.lang.ELSupport.coerceToType(ELSupport.java:329)
如果删除switchType属性
,代码可以正常工作我怀疑它可能是一个依赖性问题,这些是我的依赖项:
richfaces-components-ui 4.1.0 Final
richfaces-core-impl 4.1.0 Final
知道我为什么会遇到此异常