I’m wanting to switch from flat layout to simple layout to make our survey more accessible but having issues with one of my questions.
I have a multiselect question that is currently using select2 to search and select through a long list of options. It is working great with the flat layout but does not work when I change to simple.
Here is how it is set up currently. Is there any way to make it work with the simple layout?
JS:
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#"+this.questionId+" select").select2({
placeholder: 'Select all that apply',
closeOnSelect: false,
width: '100%'});
});
Header:
<link href="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/css/select2.min.css" rel="stylesheet" /><script src="https://cdn.jsdelivr.net/npm/select2@4.0.13/dist/js/select2.min.js"></script>
