Sencha layout item들이 수평으로 꽉차게 보이도록 처리
2024. 11. 24. 20:23ㆍJavascript/Sencha
수평으로 item들이 보이도록 하려면, hbox 사용
stretch를 사용해서 높이가 꽉차하게 함
flex를 사용해서 넓이를 꽉차게 함
Ext.onReady(function () {
Ext.create('Ext.panel.Panel', {
renderTo: Ext.getBody(),
title: 'Panel with Items Stretching Horizontally',
width: 600,
height: 300,
layout: {
type: 'hbox', // Horizontal Box Layout
align: 'stretch', // Stretch items to fill container height
},
items: [
{
xtype: 'panel',
title: 'Item 1',
flex: 1, // Fills 1 part of available width
html: 'This item stretches horizontally.',
},
{
xtype: 'panel',
title: 'Item 2',
flex: 2, // Fills 2 parts of available width
html: 'This item stretches more.',
},
{
xtype: 'panel',
title: 'Item 3',
flex: 1, // Fills 1 part of available width
html: 'This item also stretches.',
},
],
});
});
'Javascript > Sencha' 카테고리의 다른 글
Sencha Grid 405에러 415에러 처리 (0) | 2024.11.26 |
---|---|
Sencha chart에서 확대 축소 처리 (0) | 2024.11.24 |
Sencha chart x축 글자 수직으로 표시하기 (0) | 2024.11.24 |
Sencha chart series 동적 처리 (0) | 2024.11.23 |
Sencha chart 데이터 타입이 time인 x축 포멧 지정하기 (0) | 2024.11.23 |