본문 바로가기
개발/html

gsjava extjs 가로 정렬시 버튼 한칸 띄우기

by 철권 2023. 8. 11.
728x90

가로 정렬 버튼 한카 띄우기
Add a spacer component (flex 1) that will fill up any remaining space:

{
    xtype: 'panel',
    layout: 'hbox',
    border: false,
    items: [{
        xtype: 'displayfield',
        value: 'Type:',
        margin: '0 10 0 0'
    }, {
        xtype: 'radio',
        boxLabel: 'Type A',
        tag: null,
        margin: '0 10 0 0'
    }, {
        xtype: 'radio',
        boxLabel: 'Type B',
        tag: null,
    }, {
        xtype: 'component',
        flex: 1
    }, {
        xtype: 'button',
        iconCls: 'myclsIcon'
    }]
}

728x90
반응형

'개발 > html' 카테고리의 다른 글

gsjava a태그, 손가락 표시  (0) 2023.08.16
html 공백 넣기  (0) 2022.11.11
getElementById 화면 보이기  (0) 2022.09.07
gsjava javascript setTimeout  (0) 2022.08.08
gsjava html a 테그 새창열기  (0) 2019.10.27