Sencha container 오른쪽 정렬하기
2024. 12. 19. 19:13ㆍJavascript/Sencha
{
xtype: 'container',
layout: {
type: 'hbox', // Horizontal layout
pack: 'end', // Aligns child items to the right
},
items: [
{ xtype: 'button', text: 'Button 1' },
{ xtype: 'button', text: 'Button 2' },
],
}
'Javascript > Sencha' 카테고리의 다른 글
Sencha column의 값에 따라 삭제 표시 처리 (1) | 2024.12.21 |
---|---|
Sencha button 이벤트 추가하기 (0) | 2024.12.19 |
Sencha grid 선택된 데이터 삭제 처리 (0) | 2024.12.18 |
Sencha grid 데이터 합치 (0) | 2024.12.18 |
Sencha grid 데이터 가져오기 (0) | 2024.12.18 |