본문 바로가기

웹스토리

(37)
웹 개발 한국어 번역글 모음 페이지 한국어 번역글 모음 페이지 입니다. http://nolboo.github.io/trans/
how to use jcaptcha in your application. https://jcaptcha.atlassian.net/wiki/display/general/5+minutes+application+integration+tutorial
js 툴 Aptana 설치 및 사용법 http://www.youtube.com/watch?v=Z47OL5lqH0Uhttp://www.youtube.com/watch?v=pVNIKg5L7DI
flexGrid 메소드및 프로퍼티 정리 1. 상위,하위 행번호 return FG1.GetNodeRow(FG1.Row,0) parameter : row(행번호), 옵션(0:가장 상위 parent, 1:상위parent .. 등등) 설명 : 현제 row의 상위(parent) row번호를 리턴한다. 참조(API)FlexNTRoot0Returns the index of the node's top level ancestor.FlexNTParent1Returns the index of the node's immediate parent.FlexNTFirstChild2Returns the index of the node's first child node.FlexNTLastChild3Returns the index of the node's last child ..
jquery ajax 예제 펌 - http://marobiana.tistory.com/77 jQuery.ajax({ type:"GET", url:"/test", dataType:"JSON", // 옵션이므로 JSON으로 받을게 아니면 안써도 됨 success : function(data) { // 통신이 성공적으로 이루어졌을 때 이 함수를 타게 된다. // TODO }, complete : function(data) { // 통신이 실패했어도 완료가 되었을 때 이 함수를 타게 된다. // TODO }, error : function(xhr, status, error) { alert("에러발생"); } });
FLEXGRID 설명 펌 - http://blog.naver.com/PostView.nhn?blogId=jsluvhy&logNo=101987161 관련사이트 - http://flexigrid.info/ 1. 상위,하위 행번호 return FG1.GetNodeRow(FG1.Row,0) parameter : row(행번호), 옵션(0:가장 상위 parent, 1:상위parent .. 등등) 설명 : 현제 row의 상위(parent) row번호를 리턴한다. 참조(API) FlexNTRoot 0 Returns the index of the node's top level ancestor. FlexNTParent 1 Returns the index of the node's immediate parent. FlexNTFirstChild ..
OSCache cron 설명 펌 - http://stonedeng.iteye.com/blog/1378229What is a Cron Expression? Many of you are probably already familiar with the unix cron program. For those that aren't, cron is a daemon process that allows users to execute commands or scripts automatically at user-configurable dates and times. The important part as far as OSCache is concerned is the cron expression syntax that allows users to dictate ..
OSCache 설명 관련 url - http://www.opensymphony.com/참조 url - http://stonedeng.iteye.com/blog/1378176한글로 자세히 설명된 내용이 없어 나름 정리를 하였다 아 영어실력에 한계를 느끼는 순간이다.틀린부분은 댓글좀 달아주세요1.설명OSCache는 웹 페이지 로딩시 마다 was에서 컴파일 되어 가져오는 jsp페이지에서 다시 로딩 될 필요없는 부분을 캐싱하여 페이지 로딩속도를 높이기 위해서 사용된다. 2.속성key - 캐쉬 태그 단위마다 구발하는 id값 default는 [The request URI + query string] 형식으로 지정된다.scope - 캐쉬가 저장될 scope단위로 사용자 session에 상관없이 캐쉬를 공유 해야되기 때문에 보통 Appl..