Merge branch 'advc' of http://yongjoon.cho@vcs.iten.co.kr:9999/hylee/offedu into advc
This commit is contained in:
commit
f6ce89190c
@ -81,7 +81,8 @@
|
||||
listForm.submit();
|
||||
}
|
||||
|
||||
function fncReset(thisObj){
|
||||
// 종료일 캘린더까지 초기화가 안됨
|
||||
/*function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if($(this).prop('tagName') == 'SELECT'){
|
||||
@ -98,6 +99,18 @@
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}*/
|
||||
|
||||
// 캘린더 및 체크박스까지 초기화 가능
|
||||
function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if ($(this).attr('type') == 'checkbox') {
|
||||
$(this).prop('checked',false);
|
||||
} else {
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//체크박스 전체 선택
|
||||
|
||||
@ -83,7 +83,8 @@
|
||||
listForm.submit();
|
||||
}
|
||||
|
||||
function fncReset(thisObj){
|
||||
// 종료일 캘린더까지 초기화가 안됨
|
||||
/*function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if($(this).prop('tagName') == 'SELECT'){
|
||||
@ -100,6 +101,18 @@
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}*/
|
||||
|
||||
// 캘린더 및 체크박스까지 초기화 가능
|
||||
function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if ($(this).attr('type') == 'checkbox') {
|
||||
$(this).prop('checked',false);
|
||||
} else {
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//체크박스 전체 선택
|
||||
|
||||
@ -307,7 +307,7 @@
|
||||
}
|
||||
});
|
||||
}
|
||||
function fncReset(thisObj){
|
||||
/*function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if($(this).prop('tagName') == 'SELECT'){
|
||||
@ -322,6 +322,18 @@
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}*/
|
||||
|
||||
// 캘린더 및 체크박스까지 초기화 가능
|
||||
function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if ($(this).attr('type') == 'checkbox') {
|
||||
$(this).prop('checked',false);
|
||||
} else {
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@ -81,8 +81,8 @@
|
||||
listForm.action = "<c:url value='/ve/oprtn/instr/tngrVisitEdu/instrInfo/instrAplctStngExcel.do'/>";
|
||||
listForm.submit();
|
||||
}
|
||||
|
||||
function fncReset(thisObj){
|
||||
// 종료일 캘린더까지 초기화가 안됨
|
||||
/*function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if($(this).prop('tagName') == 'SELECT'){
|
||||
@ -97,6 +97,18 @@
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}*/
|
||||
|
||||
// 캘린더 및 체크박스까지 초기화 가능
|
||||
function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if ($(this).attr('type') == 'checkbox') {
|
||||
$(this).prop('checked',false);
|
||||
} else {
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function excelDownLoad(){
|
||||
|
||||
@ -79,8 +79,8 @@
|
||||
// commonPopWindowopenForm("/ve/oprtn/instr/tngrVisitEdu/popup/instrInfo/instrMdfyRqstPopup.do", "900", "700", "instrMdfyRqstPopup", $('#listForm'));
|
||||
event.stopImmediatePropagation();
|
||||
}
|
||||
|
||||
function fncReset(thisObj){
|
||||
// 종료일 캘린더까지 초기화가 안됨
|
||||
/*function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if($(this).prop('tagName') == 'SELECT'){
|
||||
@ -95,7 +95,20 @@
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}*/
|
||||
|
||||
// 캘린더 및 체크박스까지 초기화 가능
|
||||
function fncReset(thisObj){
|
||||
var targetObj = $(thisObj).closest('.list_top').find('select,input');
|
||||
$.each(targetObj, function(){
|
||||
if ($(this).attr('type') == 'checkbox') {
|
||||
$(this).prop('checked',false);
|
||||
} else {
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
<title>강사신청 관리</title>
|
||||
</head>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user