• 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

Dependent select list query

 
Ranch Hand
Posts: 89
Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have two drop down list. when i select a value in the first list, the corresp value in the second select list gets selected..
i want that the user should not be able to select another value in the second select list without changing the value in the first list...
how should i go about it??
Plz help me out..

Thanks..
Nidhi
 
Ranch Hand
Posts: 74
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Trap the event onselect or onFocus on the dependent selection box and call blur() for the second selection box.

it wud mean that you will never be able to select the second selection list at all.
[ October 12, 2004: Message edited by: Balan Ram ]
 
Nidhi Singhal
Ranch Hand
Posts: 89
Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanx for the reply...
i used onBlur() on the onFocus() event of the second(dependent) select box... but it did'nt worked... so..i tried calling onFocus() of the first select box on the onFocus of the second select box...
this thing worked somewhat.... as now if i try to drop down the second select....then after 3-4 tries only..i m able to drop down and select another value....

is there any way that i can set the drop down to false?
or is there any other way out to the problem??
plz help..

thanks..
Nidhi
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
disable the second box

Eric
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic