Skip to content

Commit

Permalink
Fixed issue #14969: missing noanswer-item class for 5 point choice array
Browse files Browse the repository at this point in the history
Fixed issue : missing noanswer-item class for array by column
  • Loading branch information
Shnoulle committed Jun 12, 2019
1 parent 63765d2 commit 601687e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -10,14 +10,13 @@
#}

<!-- td_input -->
<td class="answer_cell_{{ i }} answer-item radio-item">
<td class="answer_cell_{{ i }}{% if i=="" %} noanswer-item{% endif %} answer-item radio-item">
<input
type="radio"
name="{{ myfname }}"
id="answer{{ myfname }}-{{ i }}"
value="{{ value }}"
{{ CHECKED }}
onclick="{{ checkconditionFunction }}(this.value, this.name, this.type)"
/>
<label for="answer{{ myfname }}-{{ i }}" class="ls-label-xs-visibility">
{{ labelText }}
Expand Down
Expand Up @@ -40,7 +40,7 @@
{{ ansrow.answer }}
</td>
{% for i, ld in anscode %}
<td class="answer_cell_{{ ld }} answer-item radio-item">
<td class="answer_cell_{{ ld }}{% if ansrow.code=="" %} noanswer-item{% endif %} answer-item radio-item">
<input
type="radio"
name="{{ aQuestions[i].myfname }}"
Expand Down

0 comments on commit 601687e

Please sign in to comment.