Hi,
I want to make a double dropdown list in adapt authoring tool.
I am currently doing this to make a single dropdown list:
which has the following effect in Adapt Authoring:
This is what I hope to have:
Is this possible?
If it is, how can I retrieve the value in the .js file? Currently I am doing this for my single dropdown list:
If it is not possible, is the best way to do it simply to make 2 dropdown lists (_qnLabelFront and _qnLabelBack), then retrieve them separately and concatenating them like this?
var qnLabelFront = this.get('_qnLabelFront');
var qnLabelBack = this.get('_qnLabelBack');
var qnLabelFull = qnLabelFront + qnLabelBack;
Thanks in advance for any help!