How can I show multiple default values in a multiple choice drop-down field. Suppose a scenario, few students have chosen chemistry as optional subject. After sometime I need to add more, also I can see who have chosen the subject previously.
<default-field title="subject">
<drop-down allow-empty="false" allow-multiple="true" >
<list-options list="students" text="${student}"/>
</drop-down>
</default-field>
This code always shows all the students in the drop down. I want to display few selected students already selected.
Its like updating a list. How I can do that efficiently.