<기능개선>

1. PMS NO : 7587
2. (주요)작업내용 
(1)BO/Views/croom/payview.cshtml
 - 직무분야 수정시 전문분야 관련 설정 추가
This commit is contained in:
jity7777 2023-03-24 06:09:44 +00:00
parent 9ab63ea780
commit 1d031b04bd
1 changed files with 6 additions and 2 deletions

View File

@ -481,15 +481,18 @@
}
@section scripts{
<script>
let jobTypeItemsCnt = 0;
$(document).ready(function () {
$("#selTypejob").on("change", function () {
$(".jobTypeItems").css("display", "none")
let seltypeJobGroup = "typejob" + $(this).val();
jobTypeItemsCnt = 0;
$("[name='" + seltypeJobGroup + "']").each(function () {
$(this).css("display", "")
++jobTypeItemsCnt;
})
$("#selTypejobItem").val("")
})
});
function viewdvr(a) {
@ -674,7 +677,8 @@
typejob: $("#selTypejob").val(),
typeedu: $("#selTypeedu").val(),
typegrade: $("#selTypegrade").val(),
typejobitem: $("#selTypejobItem").val()
typejobitem: $("#selTypejobItem").val(),
jobTypeItemsCnt: jobTypeItemsCnt
}, "afterUpdateType");
}
}