분류 전체보기(848)
-
Sencha theme 화면 layout 깨지는 문제 해결
Link 사용시프로그램에서 강제로 변경할 경우theme를 변경하고, layout 전체를 다시 그려줘야 함index.htmltheme 관련 link가 없거나, href=""이어야지 layout이 안깨지고 정상 작동함 Application.js/** * The main application class. An instance of this class is created by app.js when it * calls Ext.application(). This is the ideal place to handle application launch and * initialization details. */Ext.define('Home.Application', { extend: 'Ext.app.Applicatio..
2024.12.15 -
Sencha theme 동적 적용
index.htmllink id값을 통해서 변경함 Application.jsdynamic-theme의 href 경로를 변경하여 동적 처리함/** * The main application class. An instance of this class is created by app.js when it * calls Ext.application(). This is the ideal place to handle application launch and * initialization details. */Ext.define('Home.Application', { extend: 'Ext.app.Application', name: 'Home', // Load any required classes r..
2024.12.15 -
Sencha theme 적용 순서
index.htmltheme 관련된 마지막 link가 theme에 적용됨: 아래는 theme-aria가 적용됨
2024.12.15 -
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 charts 패키지 사용하기
생성한 charts 패키지를 붙여넣기index.htmlTest.jsExt.onReady(function () { var drawContainer = Ext.create('Ext.draw.Container', { renderTo: Ext.getBody(), // Render to the body of the HTML width: 200, // Width of the container height: 200, // Height of the container sprites: [ { type: 'circle', // Circle sprite type ..
2024.12.14 -
Windows 11 새로 만들기에 메모장(notepad)이 없어졌을 때
참조: https://blog.naver.com/techshare/223252043111 윈도우 탐색기의 "새로 만들기" 메뉴에 "텍스트 문서" 항목이 없는 경우 - 두 번째 이야기예전 글과 동일한 상황이지만, 윈도우 탐색기의 "새로 만들기" 메뉴에 "텍스트 문서" ...blog.naver.comWin + rregeditHKEY_CLASSES_ROOT에서 /.txt 찾기.txt에서 새로 만들기 > 키ShellNew 입력ShellNew에서 새로 만들기 > 이진값NullFile 입력
2024.12.14