stupid drop-down list question..... 
Author Message
 stupid drop-down list question.....

Hi

I guess this is something really easy..........

I know VB, but am just getting into VBScript and have a problem!

I want to know, via the onchange, what the selected item is in a drop-down
combo box.
Using the Script wizard, there isn't a 'item' property for the combo box,
only a 'selecteditem' one.
How do I put the currently selected item into a text box as
        'form1.txtResult.value=form1.cboList.Item(form1.cboList.selecteditem)'
doesn't work?

Nigel W
--
Disclaimer:
All views are my own and not Logica UK's



Sat, 20 May 2000 03:00:00 GMT  
 stupid drop-down list question.....

Nigel,
You were nearly there:
i=document.form1.cboList.selectedItem
form1.txtResult.value=document.form1.cbolist.options(i).value

Note: If you do this in Javascript, the selectedItem has a capital I
 javascript is case sensitive) Also, although IE works without the
document before the form name, Netscape doesn't, so it is useful to
get used to using it so you don't spend hours banging your head agains
the wall when you start designing for Netscape....

Regards,
Heidi


Quote:

>I want to know, via the onchange, what the selected item is in a
drop-down
>combo box.
>Using the Script wizard, there isn't a 'item' property for the combo
box,
>only a 'selecteditem' one.
>How do I put the currently selected item into a text box as

'form1.txtResult.value=form1.cboList.Item(form1.cboList.selecteditem)'
Quote:
>doesn't work?

>Nigel W
>--
>Disclaimer:
>All views are my own and not Logica UK's



Fri, 26 May 2000 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Drop Down List Box - Drop Down portion does not always disappear after Click event

2. Drop Down List Question (And Tray Question)

3. Drop Down List Question (And Tray Question)

4. Drop Down List Question (And Tray Question)

5. Drop Down List Question (And Tray Question)

6. Drop Down List Question (And Tray Question)

7. Dynamic drop-down selection list question

8. Drop-Down List (ComboBox) and Text Box questions

9. Drop-down list box Question?

10. Drac's questions on drop down lists in combo boxes

11. Newbie: Drop-down list question

12. Question on a drop down (List) box

 

 
Powered by phpBB® Forum Software