theme 동적 처리(2)
-
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