2024-03-05 12:24 관할 지검 지청 지역 선택후 해당 지역만 나오도록 수정
This commit is contained in:
parent
782996ba9b
commit
a7dabdfd6d
@ -96,6 +96,13 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
searchOptions = $("#searchSelStatusTemp").html();
|
searchOptions = $("#searchSelStatusTemp").html();
|
||||||
|
|
||||||
|
|
||||||
|
$('.select2-selection').click( function(){
|
||||||
|
//alert( 'test' );
|
||||||
|
srchCndt2Chg2();
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function searchInit(){
|
function searchInit(){
|
||||||
@ -320,7 +327,7 @@
|
|||||||
var searchOptions;
|
var searchOptions;
|
||||||
function srchCndt2Chg(value){
|
function srchCndt2Chg(value){
|
||||||
if(value != ''){
|
if(value != ''){
|
||||||
$(".select2-search").click()
|
//$(".select2-search").click()
|
||||||
$(".select2-results__option").each(function(index, item){
|
$(".select2-results__option").each(function(index, item){
|
||||||
if($(this).html().indexOf(value) == -1 ){
|
if($(this).html().indexOf(value) == -1 ){
|
||||||
$(this).hide();
|
$(this).hide();
|
||||||
@ -329,6 +336,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function srchCndt2Chg2(){
|
||||||
|
var n_var = $("select[name=srchCndt2] option:selected").val();
|
||||||
|
srchCndt2Chg(n_var)
|
||||||
|
}
|
||||||
|
|
||||||
// 대상자 의뢰취소 - 취소에 취소 (복구)
|
// 대상자 의뢰취소 - 취소에 취소 (복구)
|
||||||
function fn_updateCancelReqStatus(p_eduStateCd, p_reqStateCd) {
|
function fn_updateCancelReqStatus(p_eduStateCd, p_reqStateCd) {
|
||||||
|
|
||||||
@ -590,7 +603,8 @@
|
|||||||
<option value="춘천">춘천</option>
|
<option value="춘천">춘천</option>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select name="searchSelStatusTemp" id="searchSelStatusTemp" class="sel_type1" multiple="multiple" style="width: 75%">
|
<select name="searchSelStatusTemp" id="searchSelStatusTemp" class="sel_type1"
|
||||||
|
multiple="multiple" style="width: 75%">
|
||||||
<c:forEach var="list" items="${CmmnDetailCodeList}" varStatus="status">
|
<c:forEach var="list" items="${CmmnDetailCodeList}" varStatus="status">
|
||||||
<option value="${list.code }" <c:if test="${info.cmptntAthrt==list.code }">selected="selected"</c:if> >${list.codeNm }</option>
|
<option value="${list.code }" <c:if test="${info.cmptntAthrt==list.code }">selected="selected"</c:if> >${list.codeNm }</option>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user