Skip to content
Snippets Groups Projects
Commit c09c195f authored by PavelBegunkov's avatar PavelBegunkov
Browse files

another opt

parent bb6f29f9
Branches
Tags
No related merge requests found
...@@ -5,17 +5,17 @@ $(function() { ...@@ -5,17 +5,17 @@ $(function() {
$(".AddDiscipline").click(function(){ $(".AddDiscipline").click(function(){
$(this).attr("disabled", true); $(this).attr("disabled", true);
var main = $(".main_content"); var main = $(".main_content");
var BonusRate = main.find(".BonusRate").prop("checked"); var BonusRate = main.find(".BonusRate").first().prop("checked");
$.post( $.post(
URLdir + 'handler/map/AddDiscipline', URLdir + 'handler/map/AddDiscipline',
{ {
'Grade': main.find('.SelectGrade').val(), 'Grade': main.find('.SelectGrade').first().val(),
'SubjectID': main.find('.SelectSubject').val(), 'SubjectID': main.find('.SelectSubject').first().val(),
'BonusRate': BonusRate, 'BonusRate': BonusRate,
'ExamType': main.find('input:radio[name=ExamType]:checked').val(), 'ExamType': main.find('input:radio[name=ExamType]:checked').first().val(),
'LectionCount': main.find('.InputLectionCount').val(), 'LectionCount': main.find('.InputLectionCount').first().val(),
'PracticeCount': main.find('.InputPracticeCount').val(), 'PracticeCount': main.find('.InputPracticeCount').first().val(),
'FacultyID': main.find('.SelectFaculty').val() 'FacultyID': main.find('.SelectFaculty').first().val()
}, },
function(data){ function(data){
data = $.parseJSON(data); data = $.parseJSON(data);
......
...@@ -76,7 +76,7 @@ $('.SelectGrade').change(function(){ ...@@ -76,7 +76,7 @@ $('.SelectGrade').change(function(){
URLdir + 'handler/map/GetStudyGroups', URLdir + 'handler/map/GetStudyGroups',
{ {
'FacultyID': FacultyID, 'FacultyID': FacultyID,
'GradeID': $('.SelectGrade').val() 'GradeID': $(this).val()
}, },
function(data){ function(data){
data = $.parseJSON(data); data = $.parseJSON(data);
...@@ -101,16 +101,18 @@ $('.InputStudentName').focusout(function(){ ...@@ -101,16 +101,18 @@ $('.InputStudentName').focusout(function(){
}); });
$('.InputStudentName').keydown(function(e){ $('.InputStudentName').keydown(function(e){
if(e.keyCode==13){ if(e.keyCode==13){
$('.InputStudentName').focusout('focusout'); $(this).focusout('focusout');
$(this).blur(); $(this).blur();
} }
}); });
$('.SelectGrade').focusout(function(){ $('.SelectGrade').focusout(function(){
$('.SelectGrade').trigger('change'); $(this).trigger('change');
}); });
$('.SelectStudyGroup').focusout(function(){ $('.SelectStudyGroup').focusout(function(){
$('.SelectStudyGroup').trigger('change'); $(this).trigger('change');
}); });
// Если студент из поиска // Если студент из поиска
......
...@@ -111,12 +111,11 @@ $(function() { ...@@ -111,12 +111,11 @@ $(function() {
{ {
var jTemp = $('.HiddenInputFacultyID'); var jTemp = $('.HiddenInputFacultyID').first();
if (jTemp) { if (jTemp) {
FacultyID = jTemp.val(); // Факультет, к которой привязана дисциплина FacultyID = jTemp.val(); // Факультет, к которой привязана дисциплина
jTemp.remove(); // Тут даже Шерлок Холмс бессилен jTemp.remove(); // Тут даже Шерлок Холмс бессилен
} }
} }
}) })
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment