본문 바로가기

Iframe 이용시 HistoryBack event 문제 해결 iframe을 이용한 사이트 구축시 ajax history 또는 Site History event 가 제대로 작동 안하는 경우가 있다. 일반적으로 Iframe Url 적용시 다음과 같은 코드를 쓰게된다. $("#MyIframe").attr('src', "http://devman.tisotry.com"); 하지만 이렇게 구축할 경우, history.back 이 제대로 작동 안하는 경우가 있다. 이는 iframe 기록시 src자체를 history로 한번더 기록하는 문제 때문이다. 이를 해결 하기 위해서는 iframe 호출 시 이전 iframe 정보를 삭제해주어야 한다. 다음과 같이 간단하게 구축할 수 있다. var iFrame = $('#MyIframe'); var iFrameParent = iFrame.p.. 더보기
STDistance, geography -- 상점 테이블 CREATE TABLE Store ( Id INT Primary Key, Name NVARCHAR(100), Location GEOGRAPHY ) -- 상점 위치 저장 INSERT INTO Store (Id, Name, Location) VALUES (1, N'KFC', geography::Parse('POINT(126.975970 37.571482)') ) INSERT INTO Store (Id, Name, Location) VALUES (2, N'교보문고', geography::Parse('POINT(126.977831 37.571100)') ) INSERT INTO Store (Id, Name, Location) VALUES (3, N'다니엘약국', geography::Parse(.. 더보기
Visual Studio 초기화 Visual Studio 초기화 방법 1. cmd(관리자) 실행2. cd C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE 입력3. Devenv.exe /resetuserdata 입력>엔터 사용자 환경이 모두 초기화 되며, 다시 설정할 수 있다 더보기
Azure VM Redmine+Agile Certified by Bitnami 설치 1. Azure Pakage 선택 - Redmine+Agile Certified by Bitnami 2. 해당 패키지 설치 후 Putty 접속 : 관련사항은 다른 문서 참조 3. 설치확인 URL > Azure ip 로 접속 : 해당 화면이 뜨면 설치 완료 된것임 Jem Update sudo gem install rubygems-update sudo update_rubygems Plugins > ckEditor 설칭 1. git 설치 sudo add-apt-repository ppa:git-core/ppa sudo apt-get update && sudo apt-get dist-upgradesudo apt-get install git-core git versiongit --버젼확인 2.Plugin 다운로드.. 더보기
RedMine Azure 설정 And Plugins 참고 URL https://docs.bitnami.com/azure/apps/redmine-plus-agile/ Plugin- ckeditor : https://github.com/a-ono/redmine_ckeditor -Copy Paste : https://github.com/peclik/clipboard_image_paste - Monitor & Controlling : https://github.com/alexmonteiro/Redmine-Monitoring-Controlling 더보기