Hello,
You need : Image + text.
You can use same workaround (maybe with some adaptation) than:
docs.limesurvey.org/tiki-index.php?page=...rsion_1.90_and_newer
And don't use
workaround D&D image function but this one:
function dragDropRankAddImages(qID, choiceText, rankText) {
if(!choiceText) {
choiceText = $('#question'+qID+' td.label label').text();
}
if(!rankText) {
rankText = $('#question'+qID+' td.output tr:first td:eq(1) strong').text();
}
dragDropRank(qID, choiceText, rankText);
$('.connectedSortable'+qID+' li').each(function(i) {
// Remove any text in the sortable choice or rank items
$(this).html('<span class="img-sortable"></span><span class="text-sortable">'+$(this).text()+'</span>');
// Move the images into the appropriate sortable list item
var liID = $(this).attr('id');
var imgContainer = $(this).find(".img-sortable");
liIDArray = liID.split('_');
$('#question'+qID+' img#'+liIDArray[1]+'').appendTo(imgContainer);
});
$('#sortable1'+qID+', #sortable2'+qID+'').css('min-height',$('#sortable1'+qID).height()+'px');
}
Denis