Sencha Trouble Shooting
2024. 3. 30. 21:23ㆍJavascript/Sencha
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: '<h2><font color="white"> Home</font></h2>'
}]
});
첫번째 item이 xtype이 지정이 안되어 있기 때문에 'panel'이 적용됨
panel에 'title'이 지정안되어 있는 경우 이런 에러가 발생함
'Javascript > Sencha' 카테고리의 다른 글
Sencha 다른 resource 참조 (0) | 2024.03.31 |
---|---|
Sencha Tip (0) | 2024.03.30 |
Sencha 화면 구성 (0) | 2024.03.30 |
Sencha config 사용법 (0) | 2024.03.27 |
Sencha 화면 전환 (0) | 2024.03.23 |