how can i use this tag :
<p:selectOneRadio>
i have a message error :
the comonent library http://primefaces.rpime.com.t/ui doen't contain such comone开发者_运维知识库nt.
i already imported the primefaces jar and imported the namepace too :
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.prime.com.tr/ui"
xmlns:f="http://java.sun.com/jsf/core"
>
It has been introduced in PrimeFaces version 3.0 M1. Prior this version it simply doesn't exist, which is exactly what the error message is trying to tell you. Upgrade your PrimeFaces libraries or use the standard <h:selectOneRadio>
instead.
PrimeFaces 3.0 is still under development. The selectOneRadio
is one of the new things that arrived with it. Then, use the 3.0.M1 if you really need those components.
精彩评论