--- loncom/interface/lonhtmlcommon.pm 2005/10/27 23:18:21 1.117 +++ loncom/interface/lonhtmlcommon.pm 2005/11/21 21:20:06 1.120 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.117 2005/10/27 23:18:21 raeburn Exp $ +# $Id: lonhtmlcommon.pm,v 1.120 2005/11/21 21:20:06 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -207,6 +207,28 @@ sub checkbox { return $Str; } + +=pod + +=item radiobutton + +=cut + +############################################## +############################################## +sub radio { + my ($name,$checked,$value) = @_; + my $Str = ' + $output .= qq| '.&mt('All courses'); my $numtitles = @$codetitles; @@ -1433,7 +1455,7 @@ sub course_select_row { $output .= '
'; } } - $output .= ''.&mt('Pick specific course(s):').' '.$courseform.'  selected.
'."\n"; + $output .= ''.&mt('Pick specific course(s):').' '.$courseform.'  selected.
'."\n"; $output .= &row_closure(); return $output; } @@ -1444,7 +1466,7 @@ sub status_select_row { if (defined($title)) { $output = &row_title($col_width,$tablecolor,$title); } - $output .= qq| + $output .= qq| '."\n"; + } + } else { + my $value = &HTML::Entities::encode($env{$key},'<>&"'); + $output .= ''."\n"; + } + } + } + } + } + return $output; +} + +############################################## +############################################## + +# set_form_elements +# +# Generates javascript to set form elements to values based on +# corresponding values for the same form elements when the page was +# previously submitted. +# +# Last submission values are read from hidden form elements in referring +# page which have the same name, i.e., generated by &echo_form_input(). +# +# Intended to be called by onload event. +# +# Input: +# Reference to hash of echoed form elements to be set. +# +# In the hash, keys are the form element names, and the values are the +# element type (selectbox, radio, checkbox or text -for textbox, textarea or +# hidden). +# +# Output: +# +# javascript function - set_form_elements() which sets form elements, +# expects an argument: formname - the name of the form according to +# the DOM, e.g., document.compose + +sub set_form_elements { + my ($elements) = @_; + my $output .= 'function setFormElements(courseForm) { +'; + foreach my $key (keys(%env)) { + if ($key =~ /^form\.(.+)$/) { + my $name = $1; + if (exists($$elements{$name})) { + my @values = &Apache::loncommon::get_env_multiple($key); + for (my $i=0; $i<@values; $i++) { + $values[$i] = &HTML::Entities::decode($values[$i],'<>&"'); + $values[$i] =~ s/([\r\n\f]+)/\\n/g; + $values[$i] =~ s/"/\\"/g; + } + if ($$elements{$name} eq 'text') { + my $numvalues = @values; + if ($numvalues > 1) { + my $valuestring = join('","',@values); + $output .= qq| + var textvalues = new Array ("$valuestring"); + var total = courseForm.$name.length; + if (total > $numvalues) { + total = $numvalues; + } + for (var i=0; i