@extends('layouts.master') @section('navigation') @if(Auth::user()->role==2) @include('local.managers.sCoords._navigation') @elseif(Auth::user()->role==3) @include('local.managers.pCoords._navigation') @endif @stop @section('main')
Select two or more Semesters that will be evaluated by an Outcome.
Learning Outcomes | ||||||
---|---|---|---|---|---|---|
1er sem | 2do sem | 1er sem | 2do sem | 1er sem | 2do sem | |
{{$outcome->name}} |
Select one or more Objectives that will be evaluated in a given Semester.
Select one or more Courses that will be evaluated by an Objective in a given Semester.
Outcome: example
Select a Three year cycle to start
Objective: '+objective_text+'
'); {{-- new_select.find('.objective-selector-0 select').attr('style','width:100%;max-width:25%;'); --}} $.each(objective.available_courses, function(index, course) { var course_id = course.course_id; var option_value = outcome_id+'-'+semester_id+'-'+objective_id+'-'+course_id; var option_name = '['+course.code+'] '+course.name; var new_option = new_select.find('.default-option').clone(true); new_option.html(option_name); new_option.val(option_value); new_option.attr('class','select_course'); new_select.find('select').append(new_option); }); if (objective.available_courses.length == 0){ new_select.find('.select-course-selection-0').hide(); new_select.find('select').prop('disabled', 'disabled'); new_select.find('select label').html(' Objective "'+objective_text+'" has no courses available for selection'); new_select.find('button').prop('disabled', 'disabled'); } $.each(objective.selected_courses, function(index, course) { new_select.find('.objective-selector-0').hide(); //si hay objetivos previamente seleccionados, escribirlos var course_id = course.course_id; var option_value = outcome_id+'-'+semester_id+'-'+objective_id+'-'+course_id; var new_selected_course = new_select.find('.objective-selector-0').clone(true); new_selected_course.attr('class','objective-selector'); new_selected_course.find('select').val(option_value); {{-- new_selected_course.find('label').html(''); --}} new_selected_course.show(); new_select.find('.clone-objective-course-select-0').before(new_selected_course); }); select_area.find('.select-course-selection-0').after(new_select); }); if (semester.selected_objectives.length != 0){ select_area.find('.select-course-selection-0').hide(); } else{ select_area.find('select').prop('disabled', 'disabled'); select_area.find('.objective-selector-0').html('There are no objectives selected for this semester'); select_area.find('button').prop('disabled', 'disabled'); } area.append(select_area); }); var footer = $('.footer-course-selection-0').clone(true); footer.attr('class','footer-course-selection'); area.append(footer); area.append('