Input chosen values through a array into drop downs

You must Login before you can answer or comment on any questions.

I have an array of check boxes, and for all checkboxes listed (must check at least 3), i would like it to then display the 3 in 3 drop downs (so each of the 3 drop downs has each of the 3 or more answers).

Here is the array of checkboxes:

for(var i = 0; i < q12InfoArray.length; i++) {
            if(q12Radio[i].getBackgroundColor() == '#000000') {
                qValue12 += q12InfoArray[i] + ',';
            }
        }
And Drop downs:
qValue13 = q13UseButton1.getTitle() + ',' + q13UseButton2.getTitle() + ',' + q13UseButton3.getTitle();

— asked 1 year ago by Dave E
3 Comments
  • var q13UseButton1 = getOptionButton2("Please Select", 0, 60);
    q13UseButton1.addEventListener('click', function(e) {
     
        var options = q12Radio[i];
        var dialog = getSelectionDialog('Please Select',options);
     
        dialog.addEventListener('click', function(e) {
            q13UseButton1.setTitle(options[e.index]);
        });
        dialog.show();
     
    });
    q13View8.add(q13UseButton1);

    — commented 1 year ago by Dave E

  • hi, I receive your mail via developer mail , you may contact me on my mail id moizchhatriwala2010@gmail.com , or please provide your mail id, so that we may have a talk.

    — commented 10 months ago by Moiz Chhatriwala

  • You haven't opted for developer link mail , so I am unable to contact you .

    — commented 10 months ago by Moiz Chhatriwala

Your Answer

Think you can help? Login to answer this question!