본문 바로가기

전체56

homebrew 사이트https://brew.sh/index_ko 설치/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 삭제ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)" 오랜만에(?) 맥 들어와서 할려고하니까brew update에서 오류...발생메시지는 대충git remote set-url origin ~ 그래서 brew --repo가서 출력된 메세지대로 실행했더니.. +++Error: Fetching /usr/local/Homebrew/Library/Taps/caskroom/h.. 2018. 9. 9.
날짜 며칠 전으로 ... -1234567891011121314151617// 며칠 전 계산public static int[] fewDaysAgo(int beforeDay) { Calendar cal = Calendar.getInstance(); cal.add(Calendar.MONTH, +1); int temp = cal.get(Calendar.DAY_OF_MONTH); if (beforeDay 2017. 5. 6.
iText 워터마크 넣기 iText5 PDF문서에 워터마크 넣기 1234567891011121314151617181920212223242526272829303132333435 manipulatePdf("PDF만든경로", "워터마크가 포함된 PDF를 저장할 ", watermark); public void manipulatePdf(String src, String dest, String imgsrc) throws IOException, DocumentException { PdfReader reader = new PdfReader(src); int n = reader.getNumberOfPages(); PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest)); /.. 2016. 11. 24.
jqGrid 캡션(제목) 선택 시 접기/펼치기 1234 //jqgrid caption 클릭 시 접기/펼치기 기능 $("div.ui-jqgrid-titlebar").click(function (){ $("div.ui-jqgrid-titlebar a").trigger("click"); });Colored by Color Scriptercs 해당 소스를 jqGrid가 만들어지는 부분 다음에 작성하면 된다.jqGrid의 ▼모양의 버튼을 클릭하게되면 jqGrid가 접기/펼치기 기능이 실행되는데다음과 같이 작성하면 캡션을 클릭 했을 때도 똑같은 이벤트가 발생된다. jqGrid가 2개 이상이라면, 'div.ui-jqgrid-titlebar' 부분을 '#gview_[Grid Id] div.ui-jqgrid-titlebar'으로 변경해주면 된다. 2016. 9. 30.