준준의 기록일지

[ExtJS] getComp 본문

ExtJS

[ExtJS] getComp

junjunwon 2020. 10. 16. 13:41

"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."




ExtJS에서는 각각 아래와 같이 변수를 comonent화해서 사용할 수 있다.

1
2
3
4
5
6
7
8
9
var panel=Ext.create("Ext.Panel", {
    id:'errorPage',
    height:400,
    width:800,
    html:'Hello Ext Js',
    text:'abcde',
    renderTo:document.body,
    hidden:true
});
cs

해당 컴포넌트를 사용하기 위해서는  내부에 id값을 명시하고

var errorPage=Ext.getComp("errorPage")

로 가져와서 사용할 수 있따.

 

객체 조회 참고 사이트

m.blog.naver.com/PostView.nhn?blogId=h9911120&logNo=50140347423&proxyReferer=https:%2F%2Fwww.google.com%2F

 

'ExtJS' 카테고리의 다른 글

[ExtJS] 클래스 정의  (0) 2020.12.15
[ExtJS] 페이지 refresh  (0) 2020.12.04
[ExtJS] fieldset label, checkboxtoggle is not visible  (0) 2020.12.02
[ExtJS] DB값에 따른 item hidden 설정  (0) 2020.09.04
[ExtJS 기초] textArea placeholder  (0) 2020.08.20