Hi,
In your question export you mix up two different scripts.
For the drop-down you use
$('.answer-item.
answer_cell_X002',
and for the numeric input
$('.answer-item.
column-4 input:text', thisQuestion).on('keyup change', function(e) {
Once you use the code of the column, and once the number of the column, which is not defined in your script
This would have been the part to define the column numbers.
Code:
// Column-specific classes
$('tr.subquestion-list', thisQuestion).each(function(i) {
$('th, td', this).each(function(i) {
$(this).addClass('column-'+i);
});
});
So, please use the provided scripts and - in case it fails - send a lss export and not a lsq nor a lsg export.
Both are language sensitive and do not contain some ipmportant settings of the survey.
Joffm