views:

19

answers:

2

Hi all

I Have two combo box And I want on select value in one combo the other will fill on same page and the value come from database in both combos.

any idea

Thanks

+2  A: 

Use JavaScript, preferably jQuery.

When the first value is selected, make an AJAX call to get the second value based on the selection. When the callback returns, fill in the second UI element.

duffymo
A: 
  • Make AJax call
  • Use DWR
  • Make form submit and reload the page and display the processed output
org.life.java