• 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
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

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
 
She's out of the country right now, toppling an unauthorized dictatorship. Please leave a message with this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic