Picture of Jason Chui
Make double dropdown list in properties.schema
by Jason Chui - Monday, 29 April 2019, 4:31 AM
 

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!

Picture of Simon Date
Re: Make double dropdown list in properties.schema
by Simon Date - Thursday, 2 May 2019, 8:15 AM
 

Hi Jason,

As far as I know the Authoring Tool schema hasn't been designed for this. You would have to create two list and concat them.

Simon