I have a problem with p:selectOneMenu in primefaces 2.2.1. I want to add a new component "开发者_Python百科selectoneMenu" into primefaces2.2.1.jar. Any idea please.
The <p:selectOneMenu>
is introduced in PrimeFaces 3.0. It is not present in PrimeFaces 2.2.
So you have 2 options:
- Upgrade to PrimeFaces 3.0 (warning: it's still in development and not stable!)
- Just use standard JSF
<h:selectOneMenu>
.
精彩评论