전체 글(847)
-
Sencha Trouble Shooting
WAI-ARIA compatibility warnings can be suppressed by adding the following to application startup code: # 소스 Ext.define('Home.view.main.Main', { extend: 'Ext.container.Container', xtype: 'main', requires: [ ], title: 'Home', layout: 'border', items: [{ region: 'north', height: 50, bodyStyle: 'background-color:black', html: ' Home' }] }); 첫번째 item이 xtype이 지정이 안되어 있기 때문에 'panel'이 적용됨 panel에 'title'..
2024.03.30 -
Sencha 화면 구성
Ext.tab.Panel: tab 좌측 표시 Ext.define('Home.view.main.Main', { extend: 'Ext.panel.Panel', xtype: 'app-main', requires: [ ], title: 'Home', // tabBar가 화면 하단까지 쭉 그려지기 위해서 필요 // tabpanel의 flex와 연계됨 layout: { type: 'vbox', }, items: [{ xtype: 'tabpanel', // layout과 연계됨 flex: 1, // tabBar가 왼쪽으로 출렬되게 함 tabPosition: 'left', // tabPosition가 'left'일때, default만 아니면 됨 // default, left, none, right tabRotatio..
2024.03.30 -
Sencha config 사용법
https://obanadingyo.tistory.com/entry/4%EC%9D%BC%EC%B0%A8-Sencha-Touch-2-views-%EC%97%90-%EB%8C%80%ED%95%9C-%EC%9D%B4%ED%95%B4 4일차 : Sencha Touch 2 views 에 대한 이해! App 에서 View 를 사용해 보자!! 사용자가 실제로 보는 부분은 view 이다. 오늘은 app 에서 어떻게 view 를 만들고 그렇게 만들어진 View 를 통해 어떻게 application 을 build 하는 지를 설명하겠다. 지난 시 obanadingyo.tistory.com config를 사용하면, 자동으로 getter, setter가 생김(외부에서 getter, setter를 거치지 않고, 직접 핸들링도 안..
2024.03.27 -
Google API token 정보 얻기
https://github.com/googleapis/google-api-python-client/blob/main/docs/oauth.md google-api-python-client/docs/oauth.md at main · googleapis/google-api-python-client 🐍 The official Python client library for Google's discovery based APIs. - googleapis/google-api-python-client github.com https://crazyj.tistory.com/163 Google Drive file upload/download Upload File to Google Drive Prepare 구글 사이트에서 준비 ..
2024.03.25 -
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 -
Sencha 배포
https://mongodev.tistory.com/71 ExtJS6 실전응용편 첫번째 강좌 - 빌드 후 샘플소스 WAS에 배포하기(Build and Deploy sample component to WAS) ExtJS 6 강좌 영상은 링크를 통해 제공됩니다. (YOUTUBE 채널 구독해주세요!!) https://youtu.be/zSKJLVQ67xQ 안녕하세요 개발로짜입니다 ^^기초편에서 우리가 ExtJS의 문법과 컴포넌트 이해를 배웠다면,이번강 mongodev.tistory.com production으로 생성해야 파일 사이즈가 줄어듬 # production 명령어 sencha app build # 확인 # 파일 사이즈가 줄어듬 cd {workspace}/build/production/{app 이름} # ..
2024.03.23