Sencha panel안의 items layout 정렬
2024. 12. 15. 23:38ㆍJavascript/Sencha
panel의 중간에 보이도록 처리
Ext.create('Ext.panel.Panel', {
title: 'Vertical Alignment Example',
width: 400,
height: 300,
layout: {
type: 'vbox', // Vertical box layout
align: 'center', // Center items horizontally
pack: 'center' // Center items vertically
},
items: [
{
xtype: 'component',
html: '<div style="font-size: 16px;">This is vertically centered!</div>'
}
],
renderTo: Ext.getBody()
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha Grid cell 편집 동적 처리 (1) | 2024.12.18 |
---|---|
Sencha Uncaught TypeError: c is not a constructor (0) | 2024.12.16 |
Sencha main화면에서 Application.js의 함수를 호출하나? (0) | 2024.12.15 |
Sencha theme 화면 layout 깨지는 문제 해결 (1) | 2024.12.15 |
Sencha theme 동적 적용 (0) | 2024.12.15 |