일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Google Map
- rowspan
- WebLogic
- jQuery
- Android
- 가우스
- PLSQL
- phonegap
- Struts
- tomcat
- JDOM
- node.js
- appspresso
- Ajax
- jsr 296
- dock
- sencha touch
- Spring
- GPS
- JSON
- oracle
- MFC
- 선택적조인
- PHP
- MySQL
- 전자정부프레임워크
- swingx
- iBATIS
- ibsheet
- Eclipse
- Today
- Total
목록Developement (559)
Where The Streets Have No Name
출처 : http://apmusers.com/tt/dbckdghk/59 1. attr( name ) Returns: Object 속성 실행후 객체 반환 Access a property on the first matched element. This method makes it easy to retrieve a property value from the first matched element. If the element does not have an attribute with such a name, undefined is returned. 주어진 속성명의 값을 가져옴, 매치되는 첫번째 것만 가져옴 Once there was a large dinosaur... The title of the emphasis i..
출처 : http://apmusers.com/tt/dbckdghk/59 =>객체 선책 1. #id Returns: Element #아이디, 실행후 원소 반환 Matches a single element with the given id attribute. 주어진 아이디에 매치되는 원소하나를 찾아 반환 id="notMe" id="myDiv" 2. element Returns: Array 원소명, 실행후 원소 배열 반환 Matches all elements with the given name. 주어진 원소명에 매치되는 모든 원소를 배열로 반환 DIV1 DIV2 SPAN 3. .class Returns: Array 클래스명, 실행후 원소배열로 반환 Matches all elements with the given..
출처 : http://apmusers.com/tt/dbckdghk/59 1. jQuery( html ) Returns: jQuery jQuery( html ), 실행후 jQuery객체를 반환 Create DOM elements on-the-fly from the provided String of raw HTML. 주어진 html을 가지고 빠르게 문서 원소를 생성한다. 그리고 jQuery객체로서 그 것을 반환한다. 이말은 그것을 이어서 jQuery의 다른 함수와 함께 사용가능하다는 뜻이다. 2. jQuery( elements ) Returns: jQuery jQuery( 원소 ) jQuery( 원소.원소.원소 ), 실행후 jQuery객체를 반환 Wrap jQuery functionality around a..
출처 : http://cafe.naver.com/rubython/420 $()jQuery 오브젝트를 만들어 내는 함수입니다. $("CSS/Xpath 문자열")CSS/XPATH 그리고 요소를 지정해, 매치한 요소를 가진다jQuery 오브젝트를 돌려줍니다. 자세한 지정 방법은 CSS / XPath (을)를 참조해 주세요. var $toc_1 = $("#toc_1"); jquery_dump($toc_1); var $h1 = $("h1"); jquery_dump($h1); var $h1head = $("h1.head"); jquery_dump($h1head); var $ahref = $("a[@href='http://jquery.com/']"); jquery_dump($ahref); var $h1pa = $("..
출처 : http://cafe.naver.com/rubython/419 기본jQuery (이)란jQuery (은)는 여러가지 처리를 짧고 간단하게 쓸 수 있다 JavaScript 라이브러리입니다. 독자적인XPATH/CSS 실렉터를 이용하는 것으로, 많은DOM 조작을 매우 간단하게 쓸 수 있습니다. JavaScript 의DOM 조작이나,XMLHTTPRequest ,XML 의 조작등을 기억하지 않아도, Ajax (을)를 이용한 인터랙티브인 페이지를 만들 수 있습니다. 이하의 샘플을 보면,JavaScript 다운 표기를 거의 할 필요가 없는 것을 알 수 있다고 생각합니다. toggle 샘플특정의 블록의 표시·비표시를 바꾸는 것은 이하와 같은 코드가 됩니다. $("#target_toggle").toggle("s..
php source :
참고 : http://www.xml.com/pub/a/2007/10/10/jquery-and-xml.html test4_ds.php xmldata.html
출처 : http://blog.naver.com/kissin/70018447897 Query 사용위에서 소개한 Aptana를 설치 하였다면, 별도 jQuery설치는 필요 없다. 하지만 설치가 어려운것은 아니다. jQuery라이브러리는 55kb짜리 파일 하나로 되어 있다. 이를 HTML에 사용 선언을 하여 주면 된다. jQuery 기존 자바 스크립트 라이브러리 사용과 차이가 없다. 단, 압축버젼과 그렇지 않은 버젼 두개의 파일을 제공하는데, 프로그래밍을 할 때는 디버깅을 위해 압축하지 않은 버젼의 파일을 사용하고, 배포할 경우 압축된 버젼을 사용하는 것이 좋다. jQuery 의 시작 이벤트보통의 자바스크립트 프로그래머들은 브라우져의 document가 모두 다운로드 되어진 상태에서 코드를 시작하기위해 다음과..
출처 : http://mygony.com/archives/944 function json_encode2($data) { switch (gettype($data)) { case 'boolean': return $data?'true':'false'; case 'integer': case 'double': return $data; case 'string': return '"'.strtr($data, array('\\'=>'\\\\','"'=>'\\"')).'"'; case 'array': $rel = false; // relative array? $key = array_keys($data); foreach ($key as $v) { if (!is_int($v)) { $rel = true; break; } } ..
기초 이 문서는 JQuery를 시작하는데 도움을 주기 위한 기본적인 튜토리얼이다. 아직 테스트 페이지를 만들어두지 않았다면, 다음과 같은 HTML 페이지를 만드는 것에서부터 시작해보도록 하자. jQuery script 태그의 src 속성의 패스를 jquery.js 가 있는 곳을 가리키도록 해야 한다. 예를들어 jquery.js가 HTML 페이지와 같은 디렉토리에 있다면 다음과 같이 한다. jQuery 는 다운로드 페이지에서 받을 수 있다. 문서가 로드되었을 때 코드 실행하기 많은 javascript 프로그래머들이 하는 첫번째 일은 다음과 같이 코드를 추가하는 일이다. window.onload = function(){ ... }function 안에는 페이지가 로드 되자마자 실행하기를 원하는 코드가 들어간다..
출처: http://ilus.tistory.com/81 ex1) Java Package /* * Base64Utils.java * * Created on 2007년 10월 16일 (화), 오후 2:22 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package fuel.Util; import sun.misc.*; import java.io.*; /** * * @author ilu */ public class Base64Utils { /** Creates a new instance of Base64Utils */ public Base64Utils() { } /** * B..
출처 : http://darksniper.springnote.com/pages/743356 var ajax = {}; ajax.xhr = {}; ajax.xhr.Request = function(url, params, callback, method) { this.url = url; this.params = params; this.callback = callback; this.method = method; this.send(); } ajax.xhr.Request.prototype = { getXMLHttpRequest: function() { if (window.ActiveXObject) { try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { t..
출처 : http://cafe.naver.com/devteria/475 환경설정. 1. web.xml에 아래내용 추가 ------------------------------------------------------------------------------------------ com.metaparadigm.jsonrpc.JSONRPCServlet com.metaparadigm.jsonrpc.JSONRPCServlet com.metaparadigm.jsonrpc.JSONRPCServlet /JSON-RPC ------------------------------------------------------------------------------------------ 2. json.jar를 lib 디렉토..
출처 : http://popfly.egloos.com/4135379 JFace를 위해 buildpath 설정 org.eclipse.jface org.eclipse.core.commands org.eclipse.equinox.common org.eclipse.swt => swt.jar org.eclipse.equinox.common
============================================= 본문서는 자유롭게 배포/복사 할수 있지만 이문서의 저자에 대한 언급을 삭제하시면 안됩니다 저자 : GoodBug (unicorn@jakartaproject.com) 최초 : http://www.jakartaproject.com ============================================= LOG4J I. 들어가면서.. 그리고 log4j log4j는 자바 어플리케이션에서 빠르고 효과적으로 로깅 할 수 있도록 도와주는 오픈 소스 프로젝트입니다. 로깅(logging)은 코드의 가독성을 떨어뜨리는 단점이 있지만 애플리케이션에 문제가 있을 때 개발자가 자세한 상황을 파악할 수 있도록 해 주며 테스팅시 빠질 수 없..
출처: http://frantik.tistory.com/57 [INSTALLATION] 1. 이클립스의 메뉴중 "Help" -> "Sotfware Updates" -> "Update Manager"를 실행한다. 2. 업데이트를 위한 새로운 북마크를 만들어준다. 아래의 정보로... URL : http://propedit.sourceforge.jp/eclipse/updates/ 3. 이클립스 버전에 맞는 PropertiesEditor를 선택해서 설치해준다. 4. 설치후 이클립스를 재시작할까요? 라는 메세지로 다시 시작해준다.
java 6.0 기반을 작성된 웹소스를 5.0기반의 시스템에서 wtp서버에 add project를 하면 Project facet Java version 6.0 is not supported. 란 에러메세지가 발생합니다. 위의 에러를 피해가려면 아래 파일의 내용을 수정해야합니다. 위의 6.0을 5.0으로 수정하면 add project가 정상적으로 작동합니다. 다른 방법으로는 Project Explorer에서 해당 프로젝트의 properties를 열어서 Project Facets를 선택하고 내용을 수정하면 됩니다. 참고 : http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.wst.doc.isv/html/facets/tutorial/tutorial.html
http://decoder.tistory.com/19 http://decoder.tistory.com/27
참고 : http://www.ibm.com/developerworks/kr/library/wa-spring1/ import org.springframework.context.support.ClassPathXmlApplicationContext; . . . ClassPathXmlApplicationContext appContext = new ClassPathXmlApplicationContext(new String[] { "springexample-creditaccount.xml" }); CreateCreditCardAccountInterface creditCardAccount = (CreateCreditCardAccountInterface) appContext.getBean("createCreditCar..
출처 : http://blog.naver.com/inter999/140048698535 아래와 같은 Query을 Function으로 만들어서 Return 해야 한다면 일반적인 oracle datatype으로는 Table 형태의 결과를 Return 할 수 없고 User Defined Object을 생성하여 사용하면 된다. select d.DEPTNO, d.DNAME, e.EMPNO, e.ENAME from dept d, emp e where d.DEPTNO = e.DEPTNO 실행결과(간략) DEPTNO DNAME EMPNO ENAME 20 RESEARCH 7369 SMITH 30 SALES 7499 ALLEN 30 SALES 7521 WARD 20 RESEARCH 7566 JONES 30 SALES 76..