--- loncom/homework/optionresponse.pm 2018/02/28 13:20:50 1.201 +++ loncom/homework/optionresponse.pm 2025/02/21 20:55:17 1.204 @@ -1,7 +1,7 @@ # LearningOnline Network with CAPA # option list style responses # -# $Id: optionresponse.pm,v 1.201 2018/02/28 13:20:50 raeburn Exp $ +# $Id: optionresponse.pm,v 1.204 2025/02/21 20:55:17 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -106,7 +106,7 @@ sub start_foilgroup { $Apache::optionresponse::conceptgroup=0; &Apache::response::pushrandomnumber(undef,$target); if ($target eq 'edit') { - my $optionlist="\n"; + my $optionlist="\n"; my $option; my @opt; my @raw_options = &Apache::lonxml::get_param('options', $parstack, $safeeval, 0, 0, 1); @@ -736,16 +736,17 @@ sub displayfoils { &mt('Select all that are [_1].',''.$checkboxopt.''); } foreach $name (@whichopt) { + if ($target eq 'web') { + $result.= '
'; + } my $text=$Apache::response::foilgroup{$name.'.text'}; if ($text!~/^\s*$/) { if ($target eq 'tex') { $break='\vskip 0 mm '; - } elsif ($target eq 'web') { - $break='
'; } } my $lastopt=$lastresponse{$name}; - my $optionlist="\n"; + my $optionlist="\n"; if($target eq 'tex' and $env{'form.pdfFormFields'} eq 'yes' && $Apache::inputtags::status[-1] eq 'CAN_ANSWER') { @@ -793,12 +794,12 @@ sub displayfoils { # lastopt is what the user submitted before # defopt is what the field is going to start out with: either previous choice or altopt # fieldname is this input field's name after HWVAL_ - $optionlist=''. + $optionlist=''; } $temp++; } else { @@ -879,6 +882,9 @@ sub displayfoils { } $displayoptionintex=0; } + if ($target eq 'web') { + $result.= '
'; + } } } @@ -929,21 +935,23 @@ sub webbubbles { my @alphabet=@$ralphabet; my $result=''; my $number_of_bubbles = $#opt + 1; - $result.= ''; + $result.= '
'. + ''.&mt('Choose one').''. + '
'; + $result.=$opt[$ind].''; } - $result.='
'; if ($alphabet[$ind]) { $result.=$alphabet[$ind].': '; } - $result.=$opt[$ind].'
'; + $result.=''; return $result; }