HighDots Forums  

activeComboBox

Javascript JavaScript language (comp.lang.javascript)


Discuss activeComboBox in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
carlo
 
Posts: n/a

Default activeComboBox - 12-03-2003 , 08:21 PM






Hello, I have to activate a combo box in a html form to load an array of
values within the combo. Is there an example somewhere?

TIA



Reply With Quote
  #2  
Old   
Thomas 'PointedEars' Lahn
 
Posts: n/a

Default Re: activeComboBox - 12-03-2003 , 08:51 PM






carlo wrote:

Quote:
Hello, I have to activate a combo box in a html form to load an array of
values within the combo. Is there an example somewhere?
There are no combo boxes in HTML. You mean a `select' element of size 1
which is displayed as a dropdown box in graphical user agents. You can
focus any form element with its focus() method. Besides, there are
plenty of postings in the newsgroup that describe how to add options to
a `select' element (as a Select or HTMLSelectElement object) and how to
remove them.


HTH

PointedEars


Reply With Quote
  #3  
Old   
Jeppe 1971
 
Posts: n/a

Default Re: activeComboBox - 12-04-2003 , 08:48 AM



Hi Carlo

Don't you think of a <SELECT>-element?

Here's an example:

SELECT-element:
<SELECT ID="idSelect" SIZE="1" onChange="dostuff(this.value);"></SELECT>

Adding options:
function addOptions() {
var numberOfNewOptions = 10;
var getSelect = document.getElementById("idSelect");
for (var i = 0; i < numberOfNewOptions; i++) {
var option = new Option("This is option number " + i,i);
getSelect.options[getSelect.length] = option;
}
}

Removing options:
function removeOptions() {
var getSelect = document.getElementById("idSelect");
while (getSelect.options.length) {
getSelect.options[0] = null;
}
}

Best regards,

Jeppe Andersen

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.