gsjava extjs 가로 정렬시 버튼 한칸 띄우기
가로 정렬 버튼 한카 띄우기 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: 'myclsI..
2023. 8. 11.
gsjava extjs datefield 형식 지정
xtype: 'datefield', name: 'record_dt', id : 'record_dt', emptyText: '등록일자', labelAlign : 'right', align : 'center', width : 130, format: 'Y-m-d', submitFormat:'Y-m-d', value: new Date("1980-01-01"), //디폴트 날짜 셋팅. 안하면 빈 값이다. renderer : Ext.util.Format.date(new Date(value), "Y-m-d") //표시되는 날짜 형식
2021. 2. 14.