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
- Config
- error
- 명시적외래키
- 스냅잘찍음
- React
- 상속
- c#코딩의기술실전편
- 코드프로그래머스
- vscode
- dbContext
- ViewModel
- c#
- extraParams
- 에스가든스냅
- minimalAPI
- intellij
- ORM
- .net
- 라도무스dvd
- JavaScript
- JSON
- mac
- Store
- lazy loading
- LINQ
- scanner
- extjs
- Request
- 대전본식영상
- EFCore
Archives
- Today
- Total
목록상속 (1)
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 '); }, classFunction2:function(){ d..
FrontEnd/Ext
2021. 10. 5. 20:35