RE: change selected item in drop down list

2005-04-06 Thread Mark Benussi
PROTECTED] Sent: 06 April 2005 16:24 To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: change selected item in drop down list Thanks for your answer Mark, I am new with JavaScripts and I tried your example, but it does not really work... I tried to do alert(options); a

Re: change selected item in drop down list

2005-04-06 Thread Frank W. Zammetti
]; >> for(var i = 0; i < options.length; i++) { >> var option = options[i]; >> if(option.value == mapSelection) { >> option.selected = true; >> break; >> } >> } >>}

Re: change selected item in drop down list

2005-04-06 Thread Anja Friedrichsen
tion) { option.selected = true; break; } } } -Original Message- From: Anja Friedrichsen [mailto:[EMAIL PROTECTED] Sent: 06 April 2005 11:20 To: Struts Users Mailing List Subject: change selected item in drop down list Hi! My application is based on stuts and contains among other t

RE: change selected item in drop down list

2005-04-06 Thread Mark Benussi
ubject: change selected item in drop down list Hi! My application is based on stuts and contains among other thing a dropdown list and a graph. What I want to do, is to change the selected item in the drop down list, when clicking on the corresponding node in the graph. Is it possible to change

change selected item in drop down list

2005-04-06 Thread Anja Friedrichsen
Hi! My application is based on stuts and contains among other thing a dropdown list and a graph. What I want to do, is to change the selected item in the drop down list, when clicking on the corresponding node in the graph. Is it possible to change the selected item in a dropdown list? My drop