[LON-CAPA-cvs] cvs: loncom /interface/statistics lonstathelpers.pm

www www@source.lon-capa.org
Sat, 15 Jan 2011 23:24:27 -0000


www		Sat Jan 15 23:24:27 2011 EDT

  Modified files:              
    /loncom/interface/statistics	lonstathelpers.pm 
  Log:
  Not have to scroll down all the way to the "Next" button in large classes
  
  
Index: loncom/interface/statistics/lonstathelpers.pm
diff -u loncom/interface/statistics/lonstathelpers.pm:1.63 loncom/interface/statistics/lonstathelpers.pm:1.64
--- loncom/interface/statistics/lonstathelpers.pm:1.63	Wed Aug  4 01:56:07 2010
+++ loncom/interface/statistics/lonstathelpers.pm	Sat Jan 15 23:24:27 2011
@@ -1,6 +1,6 @@
 # The LearningOnline Network with CAPA
 #
-# $Id: lonstathelpers.pm,v 1.63 2010/08/04 01:56:07 raeburn Exp $
+# $Id: lonstathelpers.pm,v 1.64 2011/01/15 23:24:27 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -137,7 +137,7 @@
 sub problem_selector {
     my ($AcceptedResponseTypes,$sequence_addendum,$symbmode) = @_;
     my $Str;
-    $Str = &Apache::loncommon::start_data_table();
+    $Str =  &Apache::loncommon::start_scrollbox('620px','600px','300px').&Apache::loncommon::start_data_table();
     my $rb_count =0;
     my ($navmap,@sequences) = 
         &Apache::lonstatistics::selected_sequences_with_assessments('all');
@@ -193,8 +193,9 @@
                     &Apache::loncommon::end_data_table_header_row()."\n";
             }
         }
+
     }
-    $Str .= &Apache::loncommon::end_data_table()."\n";
+    $Str .= &Apache::loncommon::end_data_table().&Apache::loncommon::end_scrollbox()."\n";
     return $Str;
 }