• 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

problem using h:selectOneRadio & a4j:support

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi ranchers,
I am facing a little problem when using a4j support for h:selectOneRadio.



everything else is working fine, the action associated with a4j is also getting invoked but the re rendering of the dataTable is giving me problem.

When I select between Yes or No, the area where the dataTable is getting displayed goes completely blank & gets redisaplyed after very delayed response.

I have used a4j:support for similar purpose for other controls like h:commandlink, h:selectManyCheckbox, etc, there it is working fine only for h:selectOneRadio giving me this problem.

I have also tried putting the dataTable in a4j:outputPanel but it also didnt worked.

Can anybody please help?

Thanks

[ November 13, 2007: Message edited by: Harry Kirsten ]
[ November 13, 2007: Message edited by: Harry Kirsten ]
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Harry

Could paste complete code of jsp.
btw what is the scope of your backing bean??
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have the same code but it works, the rendred id is panelgrid id,
<h:selectOneRadio
value="#{myBean.value}">
<f:selectItems value="#{items}" />
<a4j:support event="onclick"
actionListener="#{myBean.do}"
reRender="list"></a4j:support>
</h:selectOneRadio>
a+.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic