--- loncom/interface/coursecatalog.pm 2009/02/07 18:15:44 1.46 +++ loncom/interface/coursecatalog.pm 2009/03/18 21:03:25 1.48.2.1 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler for displaying the course catalog interface # -# $Id: coursecatalog.pm,v 1.46 2009/02/07 18:15:44 raeburn Exp $ +# $Id: coursecatalog.pm,v 1.48.2.1 2009/03/18 21:03:25 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -123,11 +123,16 @@ ENDSCRIPT } } else { my (%add_entries); + my ($currdepth,$deeper) = &get_depth_values(); if ($selitem) { + my $alert = &mt('Choose a subcategory to display'); + if (!$deeper) { + $alert = &mt('Choose a category to display'); + } $catjs .= <print('
'. &additional_filters($codedom,$has_subcats)."\n"); - my ($currdepth,$deeper) = &get_depth_values(); $r->print(''."\n"); for (my $i=0; $i<$deeper; $i++) { @@ -398,12 +402,19 @@ sub cat_header { text=>"Select courses"}); $r->print(&Apache::lonhtmlcommon::breadcrumbs('Select courses')); } + my $onchange; + unless (($env{'browser.interface'} eq 'textual') || ($env{'form.interface'} eq 'textual')) { + $onchange = 1; + } $r->print(''. '
'.&mt('Domain:').''. - &Apache::loncommon::select_dom_form($codedom,'showdom','',1). - ' 
'. + &Apache::loncommon::select_dom_form($codedom,'showdom','',1,$onchange)); + if (!$onchange) { + $r->print(' '); + } + $r->print(''. '
'. + ' onsubmit="return check_selected();">'. ''.$catlinks.'
'); return; }