Answered
Use Array of names to set Items in combobox
I am trying to loop an array to set Items in a long list of comboboxes. I keep getting not a function as a return.
var myArray=new Array ("combobox1","combobox2",etc);
for (i=0; i < myArray.length; i++);
{myArray[i].setvalue(["1","2"],["3","4"]);}I keep getting myArray[i].setvalue is not a function. What am I doing wrong? I am new to this so anyadvice is beneficial. Thanks for reading!
