Hi,
nice image.
Please, do not copy images but attach them here. You see what happens.
But if I understood your few words correctly, you want to achieve something like this?
This is done by a normal array with this script
Code:
<script type="text/javascript" charset="utf-8">
$(document).on('ready pjax:scriptcomplete',function(){
// Define this question
var thisQuestion = $('#question{QID}');
// Move the last column
$('col:nth-last-child(2)', thisQuestion).before($('col:last-child', thisQuestion));
$('col:nth-last-child(3)', thisQuestion).before($('col:nth-last-child(2)', thisQuestion));
$('col:nth-last-child(4)', thisQuestion).before($('col:nth-last-child(3)', thisQuestion));
$('table.subquestion-list tr', thisQuestion).each(function(i) {
$('> *:nth-last-child(2)', this).before($('> *:last-child', this));
$('> *:nth-last-child(3)', this).before($('> *:nth-last-child(2)', this));
$('> *:nth-last-child(4)', this).before($('> *:nth-last-child(3)', this));
});
});
</script>
Joffm