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 |
Tags
- .net
- c#코딩의기술실전편
- 대전본식영상
- JSON
- ORM
- dbContext
- 스냅잘찍음
- Store
- extraParams
- 명시적외래키
- error
- c#
- React
- scanner
- LINQ
- EFCore
- minimalAPI
- 라도무스dvd
- ViewModel
- 코드프로그래머스
- extjs
- 상속
- 에스가든스냅
- Config
- vscode
- intellij
- mac
- Request
- JavaScript
- lazy loading
Archives
- Today
- Total
목록extend (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