--- loncom/interface/lonhtmlcommon.pm 2025/02/18 03:42:04 1.418 +++ loncom/interface/lonhtmlcommon.pm 2025/03/25 01:02:59 1.422 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.418 2025/02/18 03:42:04 raeburn Exp $ +# $Id: lonhtmlcommon.pm,v 1.422 2025/03/25 01:02:59 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2463,7 +2463,7 @@ sub docs_breadcrumbs { my @row_count; sub start_pick_box { - my ($css_class,$id) = @_; + my ($css_class,$id,$caption,$caption_class) = @_; if (defined($css_class)) { $css_class = 'class="'.$css_class.'"'; } else { @@ -2477,6 +2477,16 @@ sub start_pick_box { my $output = <<"END"; END + if (defined($caption)) { + if (defined($caption_class)) { + $caption_class = 'class="'.$caption_class.'"'; + } else { + $caption_class = 'class="LC_caption"'; + } + $output .= <<"END"; + +END + } return $output; } @@ -3954,6 +3964,8 @@ sub list_from_array { # Inputs: # An array of following structure: # ({ categorytitle => 'Categorytitle', +# listclass=>'class to use for
$caption