Hello All,

I am working on My Faces 1.2.2 version to implement SelectOneRadio.
Its working fine with both (Horizontal and vertical) layout. Also reflecting
submitted value on backing bean.
I have implement this as under.

<h:selectOneRadio value="#{bean.aValue}" required="yes">
  <f:selectItem itemLabel="Option1" itemValue="1"/>
  <f:selectItem itemLabel="Option1" itemValue="2"/>
  <f:selectItem itemLabel="Option1" itemValue="3"/>
</h:selectOneRadio>


Now I want to implement, Group of Radio buttons with some other code.
Let me describe in detail by demo code.

<h:selectOneRadio value="#{bean.aValue}" required="yes">
  <f:selectItem itemLabel="Option1" itemValue="1"/>
                             Some DIV tags, CSS and other JSF tags
also......
  <f:selectItem itemLabel="Option1" itemValue="2"/>
                             Some DIV tags, CSS and other JSF tags
also......
  <f:selectItem itemLabel="Option1" itemValue="3"/>
                            Some DIV tags, CSS and other JSF tags also......
</h:selectOneRadio>

According to my current implementation, I concluded that In between tag of
h:selectOneRadio, 
It want allow tags other then h:selectItem, 
Its not showing any error, but also not displaying any component (Written in
between tag of h:selectOneRadio)


Any advice, comment or suggestion are welcome.

Rajnikant.
-- 
View this message in context: 
http://www.nabble.com/My-Faces---SelectOneRadio-Problem-tp16716809p16716809.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.

Reply via email to