mainView(2)
-
Sencha index.html 간단하게 만들기
index.html: app.js를 호출 app.jsApplication.js를 호출mainView 지정Ext.application({ extend: 'Home.Application', name: 'Home', requires: [ // This will automatically load all classes in the Home namespace // so that application classes do not need to require each other. 'Home.*' ], // The name of the initial view to create. mainView: 'Home.view.main.Main'});Applicat..
2024.12.15 -
Sencha 화면 전환
https://wikidocs.net/2964 3.1 어플리케이션 아키텍처 소개 Ext JS는 MVC와 MVVM 어플리케이션 아키텍처를 동시에 지원한다. 어플리케이션 코드를 논리적으로 분할 한다는 관점과 개념에서 생각하자면 이 두가지 아키텍처는 분명히 공유… wikidocs.net mainView를 변경하면 됨 # {app 이름}/app.js --------------------- Ext.application({ extend: 'genesis.Application', name: 'genesis', requires: [ // This will automatically load all classes in the genesis namespace // so that application classes do no..
2024.03.23