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