• 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

Richfaces rich:listshuffle question

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,

I am currently trying to get this component to work, but am having problems with the oncopyclick event in the a4j:support tag.

****************** CODE SAMPLE ***********************
<rich:listShuttle
sourceValue="#{backing_bean.newClubsList}"
targetValue="#{backing_bean.existingClubList}"
var="items"
id="shuttle"
sourceCaptionLabel="Available Clubs"
targetCaptionLabel="Currently Assigned Clubs">

<rich:column>
<h:outputText value="#{items.label}"></h:outputText>
</rich:column>

<a4j:support event="oncopyclick" action="#{backing_bean.copyCheck}" />

</rich:listShuttle>

****************** CODE SAMPLE ***********************

My issue at this point, is that my copyCheck method is never getting called. I see my new clubs on the left side and my existing clubs on the right. When I select an item from the left side(newClubsList) and click the "copy" button I see the item get moved over to the right side, but again, my copyCheck method is not getting clicked.

Any ideas?

Thanks for your assistance.

Demian
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic