Hi,
I have a multiple selection box in my human task form with lots of "Project Codes" in it. I want to select some of them in the form and have an array of "selectedCodes". But it just returns a string, which is on the top of the selected ones. Please help me solve this question.
Here is the code from my form template:
<select MULTIPLE name="selectedCodes" style="height: 50px; width: 230px">
<option selected="selected" value="">Bir veya daha fazla kod seçin</option>
<#list projectCodesResult as codes>
<option>${codes}</option>
</#list>
</select>
Thanks,
Okan