프로그램 308

jQuery memo dialog example

오늘 만든건데.. 계속 버전업할 생각 입니다..... 한번 사용해 보세요 ㅋㅋㅋ //----------------------------------------------- // my JQuery UI Dialog Maker by Mulder //----------------------------------------------- // opt.dlgid // opt.title // opt.txtid // opt.cols // opt.rows // opt.width // opt.height // opt.savefunc // opt.prologue // opt.deftext : default text var gxPrebuildedDlg = new Array(); makeMemoDialogEx = function..

프로그램/jQuery 2010.06.24

tomcat utf-8 setup

maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100"     debug="0" connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="UTF-8"    bufferSize="2048" maxProcessors="350" minProcessors="5"/>                           port="8080" protocol="HTTP/1.1"                connectionTimeout="20000"                redirectPort="8443" />    -->                        T..

프로그램/java 2010.06.13

mysql utf8 설정하기

퍼온글 : http://blog.daum.net/_blog/BlogView.do?blogid=0HOUi&articleno=6030189#ajax_history_home utf8 + struts2 + mysql5 + jsp 여기에서 한글이 문제인 경우 아래의 해법을 참조 한다 1. 우선 있을지 모르는 오류를 대비해 설정파일을 백업합니다. $sudo cp /etc/mysql/my.cnf /etc/mysql/my.cnf.orig 2. my.cnf 파일을 다음과 같이 편집해줍니다.(각 항목에 추가만 해주시면 됩니다.) [client] default-character-set=utf8 [mysqld] character-set-client-handshake=FALSE init_connect="SET collation..

apache2.2 + tomcat6 연동 (펌)

원본 : http://www.okjsp.pe.kr/seq/147782 아직 테스트는 하직 안았지만. 나름 좋은 글 같습니다. APACHE update: ------------------------------------------------------------------------------------------------------------ Apache download: http://httpd.apache.org/ Latest version http://httpd.apache.org/download.cgi ** 윈도우 비스타에서는 아파치 서버가 제대로 설치가 되지 않는다 설치시에는 별 이상없이 설치가 완료되지만 실제로 서버를 구동하면 에러가 발생한다 비스타에는 UAC란 장치가 있는데 이 UAC가 윈도..

프로그램 2010.05.24

jQuery Basic. Step 1

현재 이글은 작성중입니다. jQuery를 이미 경험 하신분들은 jQuery 가 가지고 있는 파워에 이미 놀라시고 계실거라 생각 되고, 혹시 처음 접하시는 분이 있다면... 행운을 잡으신 겁니다. :) jQuery를 쓴다는것 하나만으로 개발자는 행복해 질 수 있습니다. 자 그럼 왜 행복해 지는지 한번 들어 가는 얘기를 해보죠. http://docs.jquery.com/How_jQuery_Works 페이지의 첫번째 예제.. $(document).ready(function(){ $("a").click(function(event){ alert("As you can see, the link no longer took you to jquery.com"); event.preventDefault(); }); }); l..

프로그램/jQuery 2010.05.24