Bear with me here please. Yes there's a lot of reading and I know I'm not following the tek-tip tip on how to write a "good question", but pobody's nerfect. Plus I think a good question is where somebody describes everything at once, rather than explaining it in 10 more posts. In other words, I think I took too many Productivity classes in college.
---------------------------------------------------
Right now I can't show my entire code because it has confidential stuff on there which would take too long to remove. Its a contact list for personal use and maybe work use (people, places, websites).
Here's how its setup:
Its a triple box combo with a description area (using div) below the boxes.
First Combo Box: 26 letters
Second Combo Box: 20 categories from each letter
Third Combo Box: 5 choices from each category.
After the math, I'm left with 2600 different results. I know it sounds overkill for a contact list, but hey, I know a lot of people, places, and things.
Here's what the code looks like: This is the 5th option in the third combo box, which itself is from a 4th option of the second combo box.
secondGroup[4][5][0]=new Option(""," ");
secondGroup[4][5][1]=new Option("Click Here","You've clicked there. Congratulations!");
Here's my problem: When I code the script at work, adding options within options, I can only code so much until the IE browser doesn't take anymore. 200 results (out of the 2600 I need), and my browser says "No More!".
The weird thing is that at home, I can (so far) fit in 300 results using the same code and same type of browser (IE) from work. So the score is...Work - 200 results. Home - 300 results.
Question 1: Is there any logical reason why the PC at work doesn't allow more than the PC at work? I'm on an Intranet at work, but the script is client-side at both home and work, so I don't think that should matter. I think either the size of the code (characters) is the issue, or the number of options is. Not sure really though.
Question 2: If I can't get all 2600 choices in one Javascript code (which I'm sure I won't), is there another way I could make this triple combo box work still? I just need a brief idea and I can work from there. And I know Access is an easy option, but I want to stick with html here because of easier availability.
I've searched everywhere for answers and I've found that not many power users like to mention Javascript's limitations. I know, I wish there weren't any limits too, but it appears there are.
Thanks for reading (if you're still awake), and thanks in advance for any help. If you need any extra info, I'll try my best to share it in a much much shorter post. I promise!
Scootman
---------------------------------------------------
Right now I can't show my entire code because it has confidential stuff on there which would take too long to remove. Its a contact list for personal use and maybe work use (people, places, websites).
Here's how its setup:
Its a triple box combo with a description area (using div) below the boxes.
First Combo Box: 26 letters
Second Combo Box: 20 categories from each letter
Third Combo Box: 5 choices from each category.
After the math, I'm left with 2600 different results. I know it sounds overkill for a contact list, but hey, I know a lot of people, places, and things.
Here's what the code looks like: This is the 5th option in the third combo box, which itself is from a 4th option of the second combo box.
secondGroup[4][5][0]=new Option(""," ");
secondGroup[4][5][1]=new Option("Click Here","You've clicked there. Congratulations!");
Here's my problem: When I code the script at work, adding options within options, I can only code so much until the IE browser doesn't take anymore. 200 results (out of the 2600 I need), and my browser says "No More!".
The weird thing is that at home, I can (so far) fit in 300 results using the same code and same type of browser (IE) from work. So the score is...Work - 200 results. Home - 300 results.
Question 1: Is there any logical reason why the PC at work doesn't allow more than the PC at work? I'm on an Intranet at work, but the script is client-side at both home and work, so I don't think that should matter. I think either the size of the code (characters) is the issue, or the number of options is. Not sure really though.
Question 2: If I can't get all 2600 choices in one Javascript code (which I'm sure I won't), is there another way I could make this triple combo box work still? I just need a brief idea and I can work from there. And I know Access is an easy option, but I want to stick with html here because of easier availability.
I've searched everywhere for answers and I've found that not many power users like to mention Javascript's limitations. I know, I wish there weren't any limits too, but it appears there are.
Thanks for reading (if you're still awake), and thanks in advance for any help. If you need any extra info, I'll try my best to share it in a much much shorter post. I promise!
Scootman