Jump to content

Select option not working correctly..


xwishmasterx

Recommended Posts

Complete java-noob need a little help.

 

I have this small script that generates simple dropdown menu depending on previous selection:

var populateSubList = function() {
	var firstList = document.getElementById("list_One");
	var secondList = document.getElementById("list_Two");
	if (firstList && secondList) {
		var value = firstList.options[firstList.selectedIndex].value;
		secondList.options.length = 0;
		
		/* Do some work here to create elements to add to the second list */
		if (value == "hw") {
			var newOption = document.createElement("OPTION");
			newOption.text = "hw firmware";
			newOption.value = "fw_ukendt";
			newOption.id = "fw_ukendt";
			secondList.add(newOption);
		} else if (value == "2601") {
		var newOption = document.createElement("OPTION");
			newOption.text = "2601 firmware1";
			newOption.value = "fw1";
			newOption.id = "fw1";
			secondList.add(newOption);
		} else {
		
		}
	}
};

Now the above code works perfect, but I just can't seem to add another "item". My logic brought me to simply duplicate an option like so:

var populateSubList = function() {
	var firstList = document.getElementById("list_One");
	var secondList = document.getElementById("list_Two");
	if (firstList && secondList) {
		var value = firstList.options[firstList.selectedIndex].value;
		secondList.options.length = 0;
		
		/* Do some work here to create elements to add to the second list */
		if (value == "hw") {
			var newOption = document.createElement("OPTION");
			newOption.text = "hw firmware";
			newOption.value = "fw_ukendt";
			newOption.id = "fw_ukendt";
			secondList.add(newOption);
		} else if (value == "2601") {
		var newOption = document.createElement("OPTION");
			newOption.text = "2601 firmware1";
			newOption.value = "fw1";
			newOption.id = "fw1";
			secondList.add(newOption);



		var newOption = document.createElement("OPTION");
			newOption.text = "2601 firmware2";
			newOption.value = "fw2";
			newOption.id = "fw2";
			secondList.add(newOption);


		
		} else {
		
		}
	}
};

This does show a new option in the menu, but can't be chosen...

 

Can someone enlighten me on how to make it work?

Link to comment
Share on other sites

I see it works as intended - however a crucial thing is missing: "newOption.id" variables are gone :(

 

Why do you need an ID property for the option tags? It is not sent in the form data. Do you have additional JavaScript that uses the ID's of the options for something? If you really need it - add it back.

Edited by Psycho
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.