• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

<tr:selectOneRadio> issue

 
Ranch Hand
Posts: 108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i am not able to select any of the radio button generated in this way

<tr:selectOneRadio id="finalSelectRadio"
binding="#{popUpForScheduleReconBean.recurFrequency}"
layout="vertical" onclick="submit()"
value="#{popUpForScheduleReconBean.recurFrequencyValue}"
valueChangeListener="#{popUpForScheduleReconBean.recurFrequencyChangeListener}">
<f:selectItems
value="#{popUpForScheduleReconBean.recurFrqList}" />
</tr:selectOneRadio>

can any one point out whr the problem is?
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please confirm whether you need a radio button or drop down. If it is a radio button, then why you are referring a list inside <tr:selectOneRadio>.


The problem is with this only (<f:selectItems value="#{popUpForScheduleReconBean.recurFrqList}" /> ).
 
Ranch Hand
Posts: 2458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Chella Arun Raja Jayaraj wrote:Please confirm whether you need a radio button or drop down. If it is a radio button, then why you are referring a list inside <tr:selectOneRadio>.


The problem is with this only (<f:selectItems value="#{popUpForScheduleReconBean.recurFrqList}" /> ).


I don't see how that's a problem? It's a radio button group where you can select one item from a list. It's perfectly valid.

To me, the actual problem can't be determined based on the as far given information. Please elaborate more.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic