--- loncom/homework/edit.pm 2003/10/15 21:19:46 1.57.2.3 +++ loncom/homework/edit.pm 2003/09/08 21:10:53 1.61 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # edit mode helpers # -# $Id: edit.pm,v 1.57.2.3 2003/10/15 21:19:46 albertel Exp $ +# $Id: edit.pm,v 1.61 2003/09/08 21:10:53 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -63,10 +63,17 @@ sub tag_start { &deletelist($target,$token) ." ". - &insertlist($target,$token).&end_row().&start_spanning_row(); + &insertlist($target,$token); #". # &movebuttons($target,$token). # "\n"; + my @help;# = Apache::lonxml::helpinfo($token); + if ($help[0]) { + $result .= '' . + Apache::loncommon::help_open_topic(@help) . + ''; + } else { $result .= " "; } + $result .= &end_row().&start_spanning_row(); } return $result; } @@ -119,7 +126,7 @@ sub end_table { return $result; } -sub start_spanning_row { return '';} +sub start_spanning_row { return '';} sub start_row { return ''; } sub end_row { return ''; } @@ -561,19 +568,17 @@ sub select_arg { my $optionlist=""; my $selected=$token->[2]{$name}; foreach my $option (@$list) { - my ($text,$value); + my $value; if ( ref($option) eq 'ARRAY') { $value='value="'.$$option[0].'"'; - $text=$$option[1]; - $option=$$option[0]; + $option=$$option[1]; } else { - $text=$option; $value='value="'.$option.'"'; } if ( $selected eq $option ) { - $optionlist.="\n"; + $optionlist.="\n"; } else { - $optionlist.="\n"; + $optionlist.="\n"; } } $result.=''.$description.'  - '.$optionlist.' - '; - } else { - $result.=&text_arg($description,$name,$token,$size); - } - return ''.$result.''; + $optionlist.="\n"; +# + my $element=&html_element_name($name); + my $selectelement='select_list_'.$element; + my $typeinelement='type_in_'.$element; + my $typeinvalue=($found?'':$selected); +# + my $hiddenvalue='this.form.'.$element.'.value'; + my $selectedindex='this.form.'.$selectelement.'.selectedIndex'; + my $selectedvalue='this.form.'.$selectelement. + '.options['.$selectedindex.'].value'; + my $typedinvalue='this.form.'.$typeinelement.'.value'; + my $selecttypeinindex='this.form.'.$selectelement.'.options.length'; +# + return (< +$description +  + + +ENDSELECTORTYPE } #----------------------------------------------------- image coordinates