Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- .net
- Config
- 에스가든스냅
- vscode
- c#
- 명시적외래키
- minimalAPI
- 대전본식영상
- mac
- JSON
- LINQ
- ViewModel
- dbContext
- ORM
- EFCore
- Request
- Store
- scanner
- intellij
- 코드프로그래머스
- c#코딩의기술실전편
- 상속
- error
- extraParams
- 라도무스dvd
- lazy loading
- React
- extjs
- 스냅잘찍음
- JavaScript
Archives
- Today
- Total
ejyoo's 개발 노트
상속 본문
ExtJS는 클래스를 정의하고 상속을 한다.
OOP(Object Oriented Programming) 프로그램의 상속과 유사하다.
* 상속 방법
Ext.define('새로운클래스',{
extend:'상속받을 클래스'
});
* 상속 예제(생성한 앱에서 해당 파일 더블클릭하여 실행)
Ext.onReady(function(){
Ext.define('TestConstructor',{
config:{
id:null
},
constructor:function(config){
this.initConfig(config);
},
classFunction1:function(){
document.write(this.getId()+'classFunction1<br>');
},
classFunction2:function(){
document.write(this.getId()+'classFunction2<br>');
}
});
Ext.define('TestInheritance',{
extend:'TestConstructor'
});
var id1 = Ext.create('TestInheritance',{
id:'id1'
});
id1.classFunction1();
id1.classFunction2();
}
이처럼 ExtJS는 대부분 클래스를 상속받아 사용하는 구조임.
한가지 예로 패널을 들 수 있음.
예제
- renderTo : 원하는 위치에 출력하는 속성
Ext.create를 사용하여 미리 정의된 클래스를 생성하는 경우, 화면에 출력이 자동으로 되지 않으므로
renderTo라는 config 로 원하는 Tag 위치에 출력한다.
현재는 document의 body에 출력한다.
Ext.onReady(function(){
Ext.define('TestPanel',{
extend:'Ext.panel.Panel',
title:'Hello ExtJS',
html:'Hello ExtJS HTML',
renderTo:document.body
});
Ext.create('TestPanel',{
});
});
'FrontEnd > Ext' 카테고리의 다른 글
정적속성 (0) | 2021.10.06 |
---|---|
config 속성 (0) | 2021.10.05 |
생성자 초기화 (0) | 2021.10.05 |
ExtJS 라이브러리 종류 (0) | 2021.10.05 |
Classic APP 기본 파일 분석 (0) | 2021.09.08 |