sencha(124)
-
Sencha Ext.tab.Panel(PC, classic)
참조 https://docs.sencha.com/extjs/7.7.0/ Docs | Ext JS 7.7.0 Ext JS - API documentation from Sencha docs.sencha.com App 파일 구조 제목 수정 # /classic/src/view/main/Main.js ----------------------- Ext.define('genesis.view.main.Main', { extend: 'Ext.tab.Panel', xtype: 'app-main', requires: [ 'Ext.plugin.Viewport', 'Ext.window.MessageBox', 'genesis.view.main.MainController', 'genesis.view.main.MainModel', ..
2024.03.23 -
Sencha Theme 수정하기
App theme 변경 # {app 이름}/app.json "builds": { "classic": { "toolkit": "classic", # theme 수정 "theme": "theme-classic", "sass": { "generated": { "var": "classic/sass/save.scss", "src": "classic/sass/save" } } }, "modern": { "toolkit": "modern", # theme 수정 "theme": "theme-material", "sass": { "generated": { "var": "modern/sass/save.scss", "src": "modern/sass/save" } } } },
2024.03.22 -
STS를 이용해 Sencha 프로젝트 생성
STS에서 일반 프로젝트 생성Sencha 설정# STS의 workspace 디렉토리로 이동cd {프로젝트 디렉토리}sencha generate workspace {STS 프로젝트명}# App 생성cd {STS 프로젝트명}sencha -sdk {sencha SDK 디렉토리} generate app {app 이름}# theme 생성# {workspace 디렉토리}/ext/packages/local/{theme 이름}에 생성됨sencha -sdk ext generate theme {theme 이름}# app 기동# 'http://localhost:1841'로 확인cd {app 이름}sencha app watch# index.html 생성cd {workspace 디렉토리}----------------------..
2024.03.22 -
Sencha 설치
다운로드 SenchaCmd Ext JS Sencha Touch 업그레이드 # 최신 버전 확인 sencha upgrade --check # 최신 버전 업그레이드 sencha upgrade Workspace 생성 sencha generate workspace ws App 생성 # workspace로 이동 cd ws # App 생성 sencha -sdk {SDK} generate app Test Test cd Test sencha build # App 기동 sencha app watch 샘플 기동 # app 생성 cd {sdk 디렉토리} sencha generate app Temp Temp # app 기동 # http://localhost(:port)로 확인 cd Temp sencha app watch (-p..
2024.03.19