sencha(124)
-
sencha에 외부 js 파일 import 하기
index.html 파일에 import하면 됨util.jsfunction test() { alert();}호출{ text: 'Login', handler: function() { test(); }}
2024.07.27 -
Main을 원하는 대로 변경
화면에 아무것도 안나오면, 오타 또는 ',' 누락임잘 살펴야 함# Ext.create 필요없음# renderTo: Ext.getBody() 필요없음Ext.define('Home.view.main.Main', {extend: 'Ext.form.Panel', title: 'Hello', width: 200, html: 'World!',});
2024.07.21 -
Spring boot Security에서 sencha 예외 처리
로그인 전에 sencha 화면이 나오게 하려면 아래와 같이 url 예외처리 해줘야 함 String[] exceptUrl = { "/*.js", "/*.json", "/build/**", "/ext/build/**", "/ext/classic/**", "/app/**", "/classic/**" } @Bean public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests((requests) -> requests .requestMatchers(exceptUrl).permitAll() .anyRequest().authe..
2024.07.20 -
theme css 파일 위치
{ext 설치 위치}/build/classic/theme-*/resources{ext 설치 위치}/build/modern/ theme-*/resources
2024.07.16 -
Ext에 property 추가
Ext.theme.name을 추가하고 싶을 때 Ext 객체와 이름이 같아서 충돌이 생기는 경우
2024.07.16 -
Sencha Trouble Shooting
Missing required arguments.# 실행cd app이 생성되어야 하는 디렉토리sencha -skd {sencha 설치 위치} generate app {app 이름}# 에러[ERR] Missing required arguments. sencha.generate.app requires these parameters: path (The path for the generated application) For usage info, see sencha help generate app # 조치후 실행sencha -skd {sencha 설치 위치} generate app {app 이름} .
2024.07.13