When using the Pick, Group and Rank Question in Qualtrics, I would like to allow an item to be dropped to several groups if wanted.
How is this possible, e.g., with using Javascript?
In the default Pick, Group and Rank question, every item can only be dropped to one group or bucket and then vanishes from the item list on the left-hand-side.
I found also this same question in the qualtrics community but it appears to not been answered.
Context: Qualtrics allows to easily embed JavaScript code to a question to be inserted in the following placeholders via the Survey user iterface.
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
});
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
});
});
Qualtrics.SurveyEngine.addOnUnload(function()
{
/*Place your JavaScript here to run when the page is unloaded*/
});