• 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

Change values in dropdown dynamically

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I've two dropdowns on my jsf page.
I want to change the values of second one based on the value selected in the first. So once the user selects some values in dropdown 1 the values in dropdown 2 should be refetched.
How to do this?
 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You should be able to achieve this w/ PartialTriggers (FYI, I use Apache Trinidad). Here is a snippet of my JSF code:

First ListBox:


Second ListBox:


Notice the second listbox: I have the partialTriggers attribute set to the id of the first listbox and in the backing bean whenever the user selects a value in the first listbox, this valuechange is captured and sent to populate the second box.

Hope this helps.
 
reply
    Bookmark Topic Watch Topic
  • New Topic