Ext JS - 5. applyTo, renderTo, contentEl 의 차이점
Web Programming/Ext JS / 2010. 1. 14. 14:58
뭐가 다른건지 잘 알지 못하겠어서 forum에 가서 뒤적였더니 누군가가 이미 질문을 하고 Animal(유명하군... 저게 진짜 그 사람 얼굴일까??? 중후하게 생긴게 분위기가 숀 코넬린데 ㅋ)님이 답글을 이미 달아놓았다.
renderTo renders the Component into the specified existing element.
==> renderTo는 기존의 element에 component를 rendering 하는 것이다.(즉, 컴퍼넌트 내의 새로운 element를 생성해서 사용할 때 사용한다는 말)
applyTo uses the specified alement as the main element of the Component. A Component created using applyTo does not need rendering - its main element already exists.
==> applyTo는 component의 기본 element에 적용시킬 때 사용. applyTo를 이용해 생성된 component는 rendering을 필요로 하지 않는다. (기본 element는 component가 생성될 때 이미 만들어지므로)
contentEl is only for Panels. It simply moves the specified element into the body of the Panel when the Panel is rendered to use... as the content!
==> contentEl은 Panel에서만 사용됩니다. Panel이 생성되어진 이후 content와 같은 지정된 element를 Panel의 body로 손쉽게 넣을 수 있습니다.
대충 이런 느낌? ㅋㅋㅋ
renderTo renders the Component into the specified existing element.
==> renderTo는 기존의 element에 component를 rendering 하는 것이다.(즉, 컴퍼넌트 내의 새로운 element를 생성해서 사용할 때 사용한다는 말)
applyTo uses the specified alement as the main element of the Component. A Component created using applyTo does not need rendering - its main element already exists.
==> applyTo는 component의 기본 element에 적용시킬 때 사용. applyTo를 이용해 생성된 component는 rendering을 필요로 하지 않는다. (기본 element는 component가 생성될 때 이미 만들어지므로)
contentEl is only for Panels. It simply moves the specified element into the body of the Panel when the Panel is rendered to use... as the content!
==> contentEl은 Panel에서만 사용됩니다. Panel이 생성되어진 이후 content와 같은 지정된 element를 Panel의 body로 손쉽게 넣을 수 있습니다.
대충 이런 느낌? ㅋㅋㅋ
'Web Programming > Ext JS' 카테고리의 다른 글
Ext JS - 7. Simple container layout 생성 (0) | 2010.01.21 |
---|---|
Ext JS - 6. Form 생성 (0) | 2010.01.21 |
Ext JS - 4. Events 등록과 Event Listeners (0) | 2010.01.14 |
Ext JS - 3. Burst Events in action (0) | 2010.01.14 |
Ext JS - 2. Dom based Events (0) | 2010.01.14 |