-
1. Re: record 10 Dropdown selections
stevenm8611492 Nov 21, 2016 5:03 PM (in response to stevenm8611492)So I have one drop down that I need to enter as a string to a text field, 10 selections from the Dropdown
-
2. Re: record 10 Dropdown selections
Joel_Geraci Nov 22, 2016 8:11 AM (in response to stevenm8611492)Please elaborate. It sounds like you want to have a dropdown that can have up to 10 items selected. That's not possible, dropdowns can have only one item selected.
-
3. Re: record 10 Dropdown selections
gkaiseril Nov 22, 2016 8:31 AM (in response to stevenm8611492)You need a list field with the multiple selections option enablied, then you need a cust script to join or concatinate the choicies.
-
4. Re: record 10 Dropdown selections
stevenm8611492 Nov 22, 2016 5:36 PM (in response to gkaiseril)I have one Drop down with 127 items and I need to record the 10 selections from that single dropdown each time a new Dropdown is selected into another text field (join or concatenate)
Dropdown is Called "CC" and the field is "CareeerPaths"
selection1 + ", " + selection2 + ", " + selection3 etc....
I'm thinking that the code can be done with a counter (var i = 1; i<11; i++) { do something;}
if(event.willCommit){if(event.value == "") this.resetForm (["CareeerPaths"]);
else SetCareerPathsFieldValues(event.value);
-
5. Re: record 10 Dropdown selections
gkaiseril Nov 23, 2016 10:02 AM (in response to stevenm8611492) -
6. Re: record 10 Dropdown selections
Joel_Geraci Nov 23, 2016 11:37 AM (in response to gkaiseril)One thing you might consider in order to use the dropdown as you describe is that for each selection from the dropdown a script will append the current selection to the text field and using a comma as a delimiter between "items" AND delete that item from the dropdown. You'd then need an event on the text field to repopulate the dropdown in case the user deletes something something from the text field.
If that sounds like what you want, the script is pretty simple.