- Posts: 9
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
Hat er wieder einmal die Idee, das dies wie ein Papierfragebogen aussieht? Wir erstellen hier einen online-Fragebogen.Nun möchte mein Prof, dass dies bei der Frage mit der mehrfachen numerischen Eingabe beachtet wird. Das heißt, dass jene Kriterien, die entschieden wurden nicht mit einzubeziehen (Frage q0r692), hier bei dieser Frage (D1) direkt eine 0 zugeordnet bekommen.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Verstehe ich nicht.Hast du eine Idee wie ich das Speichern der Angaben in C1 hinbekomme?
Please Log in to join the conversation.
Please Log in to join the conversation.
// Returning to page $('.with-select input:text', thisQuestion).each(function(i) { var thisCell = $(this).closest('.answer-item'); var inputText = $.trim($(this).val()); var selectval = $('select.inserted-select option', thisCell).filter(function () { return $(this).html() == inputText; }).val(); $('select.inserted-select', thisCell).val(selectval); });
// Returning to page $('.with-select input:text', thisQuestion).each(function(i) { var thisCell = $(this).closest('.answer-item'); var inputText = $.trim($(this).val()); $('select.inserted-select', thisCell).val(inputText); });
// Returning to page $('.with-select input:text', thisQuestion).each(function(i) { var thisCell = $(this).closest('.answer-item'); var inputText = $.trim($(this).val()); $('select.inserted-select', thisCell).val(inputText); }); $('.answer_cell_QX001 .inserted-select').each(function(i) { handleColumnQX002($(this)); });
Please Log in to join the conversation.