Vita Contemplativa/개발 8

Eclipse에 eXERD 플러그인 설치하여 MySQL DBMS 연동하기

업무를 하다보면 생소한 테이블관계를 만날 때 전체적인 관계도가 있으면 좋겠다고 생각이되어서 eXERD를 이클립스에 플러그인으로 설치하여 DBMS를 연동하기로 했다. 1. 이클립스에 eXRED 플러그인 설치1) 이클립스 메뉴 중 Help > Install New Software.. 선택2) Work With 에 http://exerd.com/update 입력 후 Add 클릭3) Name 에 eXERD 입력하여 OK 클릭4) Contact all update sites... 옵션 해제한 후 Next 클릭5) 라이선스 동의하여 계속 Next로 설치 진행6) 설치가 끝난 후 'You will need to restart Eclipse for the changes to take effect. Would you l..

[Javascript] Date객체로 날짜 차이 계산하기

두 날짜의 일수 차이를 계산해서 7일이상이면 의 스타일을 다르게 적용시키기 Colored By Color Scripter™ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 // 기준 날짜 (오늘 날짜) var nowTime = new Date(); // 비교 날짜 var param_year = 2014; // 2014년 var param_month = 6; // 7월(month는 0부터 시작하기때문에 7월은 6임) var param_day = 10; // 10일 var toComparedTime = new Date(param_year, param_month, param_day); // 날짜 차이 구하기 var day = 60 * 60 * 24 * 1000; //..

아이프레임 높이 조절

iframe으로 목록을 submit 하고 나서 iframe내 생기지 않게 높이를 조절하기 [부모창] function iframestudyConsultAuto(){ $('#studyConsultDiv').attr('style','height:'+eval(studyConsult.document.body.scrollHeight+30)+'px'); $('#studyConsult').attr('style', 'height:'+eval(studyConsult.document.body.scrollHeight+30)+'px'); } [자식창] initailzing 부분에서 부모창의 위 함수 호출 parent.iframenoMemberAuto(); // 사이즈 조절

728x90