//웹에디터 생성 - placeholder 지정 function webNote( field, width, height, placeholder ) { if( placeholder == '' ) placeholder = '내용을 작성해주세요.'; //여기 아래 부분 $( field ).summernote({ width:width, height: height, // 에디터 높이 minHeight: 350, // 최소 높이 maxHeight: null, // 최대 높이 focus: false, // 에디터 로딩후 포커스를 맞출지 여부 lang: "ko-KR", // 한글 설정 toolbar : [ // 글꼴 설정 ['fontname', ['fontname']], // 글자 크기 설정 ['fontsize', ['fontsize']], // 굵기, 기울임꼴, 밑줄,취소 선, 서식지우기 ['style', ['bold', 'italic', 'underline','strikethrough', 'clear', 'superscript', 'subscript']], // 글자색 ['color', ['forecolor','color']], // 표만들기 ['table', ['table']], // 글머리 기호, 번호매기기, 문단정렬 ['para', ['ul', 'ol', 'paragraph']], // 줄간격 ['height', ['height']], // 그림첨부, 링크만들기, 동영상첨부 ['insert',['picture','link','video']], // 코드보기, 확대해서보기, 도움말 ['view', ['codeview','fullscreen', 'help']] ], placeholder: placeholder, //placeholder 설정 callbacks: { //여기 부분이 이미지를 첨부하는 부분 onImageUpload : function(files) { for (var i = files.length - 1; i >= 0; i--) { uploadSummernoteImageFile(files[i], this); } }, onPaste: function (e) { var clipboardData = e.originalEvent.clipboardData; if (clipboardData && clipboardData.items && clipboardData.items.length) { var item = clipboardData.items[0]; if (item.kind === 'file' && item.type.indexOf('image/') !== -1) { e.preventDefault(); } } } } }); } //웹에디터 이미지 파일 업로드 function uploadSummernoteImageFile(file, editor) { data = new FormData(); data.append( "file", file ); $.ajax({ data : data, dataType : "json", type : "POST", url : "/sources/summernote/summernote-ajax.php?prc_mode=file_upload_ajax", contentType : false, processData : false, success : function(data) { //항상 업로드된 파일의 url이 있어야 한다. $( editor ).summernote( 'insertImage', data ); }, error: function ( request, status, error ) { console.log("code: " + request.status) console.log("message: " + request.responseText) console.log("error: " + error); } }); } function DeteSelect( field ) { $( field ).datepicker ({ // showOn: "button", // 버튼과 텍스트 필드 모두 캘린더를 보여준다. // buttonImage: "/sources/image/calendar.gif", // 버튼 이미지 changeYear: true, changeMonth: true, altFormat: 'yy-mm-dd', dateFormat: 'yy-mm-dd', minDate: "2000-01-01", monthNames:[ '1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월' ], monthNamesShort:[ '1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월' ], dayNames:[ '일', '월', '화', '수', '목', '금', '토' ], dayNamesShort:[ '일', '월', '화', '수', '목', '금', '토' ], dayNamesMin:[ '일', '월', '화', '수', '목', '금', '토' ] }); } //간단한 기타 - 텍스트 제어의 경우 여러번 쓰지않고, 하나의 함수로 정의하여 제어하기로함 //파라미터 값은 기준 엘리먼트, 제어 엘리먼트다 function EtcControl( reference_element_name, reference_element_id, control_element ) { if( !$( '[name=' + reference_element_name + '][id=' + reference_element_id + ']' ).is( ':checked' ) ) { $( '[name=' + control_element + ']' ).prop( 'disabled', true ); $( '[name=' + control_element + ']' ).prop( 'checked', false ); $( '[name=' + control_element + '][type="text"]' ).val( '' ); $( '[name=' + control_element + '][type="radio"]' ).prop( 'checked', false ); $( '[name=' + control_element + '][type="checkbox"]' ).prop( 'checked', false ); } else { $( '[name=' + control_element + ']' ).prop( 'disabled', false ); } $( document ).on( 'click', '[name=' + reference_element_name + ']', function() { EtcControl( reference_element_name, reference_element_id, control_element ); }); } function SubFormAdd( type ) { let num = 0; let form = $( '#' + type + '_board_0' ).clone(); //만약 존재한다면 if( $( '[name=' + type + '_num]' ).length > 0 ) num = $( '[name=' + type + '_num]' ).val(); num++; //보이고있지 않다면 보이게하기 $( form ).show(); //일반적인 show를 한다면 자동으로 display:block이 되어 css에 간섭되는 것을 발견, show의 파라미터 값으로 수정하는 방법을 찾기전 임시적으로 해당 코드를 삽입하여 제어함 - 2022년 1월 25일 경성현 $( form ).css( 'display', '' ); //board 값 수정 $( form ).attr( 'id', $( form ).attr( 'id' ).replace( '_0', '_' + num ) ); //input 값 수정 $( form ).find( 'input' ).each(function( index, value ) { if( $( value ).attr( 'type' ) != 'button' ) { $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); //name에 date 문자열이 들어가고 속성중 readonly가 활성화되어있다면, dateSelectall을 적용함 - 2021년 5월 11일 경성현 //name보다 확실하게 부여되는 class에 hasDatepicker가 좀 더 정확하여 해당 기능으로 수정 - 2022년 3월 22일 경성현 if( $( value ).attr( 'class' ) != null ) { if( $( value ).attr( 'class' ).indexOf( 'hasDatepicker' ) >= 0 && $( value ).attr( 'readonly' ) ) { $( value ).attr( 'id', '' ); $( value ).attr( 'class', 'i_text' ); dateSelect( value, 'now' ); } } } else { if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); $( value ).attr( 'onclick', $( value ).attr( 'onclick' ).replace( '0', num ) ); } }); //select 값 수정 $( form ).find( 'select' ).each(function( index, value ) { $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); }); //textarea 값 수정 $( form ).find( 'textarea' ).each(function( index, value ) { if( $( value ).attr( 'name' ) != null ) $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); }); //span 값 수정 $( form ).find( 'span' ).each(function( index, value ) { if( $( value ).attr( 'name' ) != null ) $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); //숫자매겨달라그래서 여기 고유의 기능일듯 - 2022년 6월 23일 경성현 if( $( value ).attr( 'class' ) == 'number-tag' ) $( value ).text( num ); }); //div 값 수정 $( form ).find( 'div' ).each(function( index, value ) { if( $( value ).attr( 'name' ) != null ) $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); }); //label 값 수정 $( form ).find( 'label' ).each(function( index, value ) { if( $( value ).attr( 'for' ) != null ) $( value ).attr( 'for', $( value ).attr( 'for' ).replace( '_0', '_' + num ) ); }); //template 값 수정 $( form ).find( 'template' ).each(function( index, value ) { if( $( value ).attr( 'name' ) != null ) $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); }); //tbody 값 수정 $( form ).find( 'tbody' ).each(function( index, value ) { if( $( value ).attr( 'name' ) != null ) $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); }); //tr 값 수정 $( form ).find( 'tr' ).each(function( index, value ) { if( $( value ).attr( 'name' ) != null ) $( value ).attr( 'name', $( value ).attr( 'name' ).replace( '_0', '_' + num ) ); if( $( value ).attr( 'id' ) != null ) $( value ).attr( 'id', $( value ).attr( 'id' ).replace( '_0', '_' + num ) ); }); //remove버튼 값 수정 //바로 아래 방식으로 제어한건 왜 그랬는지 기억이 안남, each돌리면 될껄 - 2022년 4월 21일 경성현 //if( $( form ).find( 'button' ).length > 0 ) $( form ).find( 'button' ).attr( 'onclick', $( form ).find( 'button' ).attr( 'onclick' ).replace( '0', num ) ); $( form ).find( 'button' ).each(function( index, value ) { $( value ).attr( 'onclick', $( value ).attr( 'onclick' ).replace( '0', num ) ); }); $( '#' + type + '_list' ).append( form ); //있다면 if( $( '[name=' + type + '_num]' ).length > 0 ) $( '[name='+ type + '_num]' ).val( num ); } function SubFormRemove( type, num ) { $( '#' + type + '_board_' + num ).remove(); } function AcceptSearch( mode = '' ) { if( mode == '' ) window.open( '../03_irb/pop-findapp.html', 'AcceptSearch', 'width=820, height=760, scrollbars=yes, resizable=yes'); else window.open( '../03_irb/pop-findapp.html?mode=' + mode, 'AcceptSearch', 'width=820, height=760, scrollbars=yes, resizable=yes'); } function AcceptSelect( no ) { location.href = document.location.href.split( '?' )[0] + '?no=' + no; } function ReviewAjaxWrite( no, name, value ) { $.ajax({ type: 'POST', async:false, url : "../review/review_prc.php?prc_mode=dVFxU1JBTnFQc0pxZEFCSy9uazYxU0F0a29uME1uMW4xd0VnenFoeU9Mcz0", data: { 'no' : no, 'name' : name, 'value' : value }, error: function ( request, status, error ) { console.log("code: " + request.status) console.log("message: " + request.responseText) console.log("error: " + error); } }); }