我有問題,在收音機組中設置每個單選按鈕的寬度。ExtJS 3.4 Radiogroup strech關閉
xtype: 'container',
id: 'cntCompany',
layout: 'hbox',
fieldLabel: 'Company',
items: [
{
xtype: 'radiogroup',
id: 'rdogrpCompany',
items: [
{ id: 'rdoIT', boxLabel: 'IT', name: 'rdoCompany', inputValue: 'IT', width: 40, checked: true },
{ id: 'rdoCOMMS', boxLabel: 'COMMS', name: 'rdoCompany', width: 40, inputValue: 'Comms' },
{ id: 'rdoGROUP', boxLabel: 'GROUP', name: 'rdoCompany', width: 40, inputValue: 'Group' },
{ id: 'rdoALL', boxLabel: 'ALL', name: 'rdoCompany', width: 40, inputValue: 'All', margins: '0 0 0 30' }
]
}
]
我設置了每個單選按鈕的寬度,但它無法正常工作。 爲什麼這個radiogroup strech寬度列相同並忽略寬度:40? 我如何設置每個單選按鈕的寬度?
我認爲這是由你選擇的佈局造成的。它似乎覆蓋子項寬度。但這只是一個猜測... – sra 2012-01-03 12:50:01
@sra我認爲這不是一個佈局問題,因爲單選按鈕寬度工作正常,沒有無線電組。 – ShootingStar 2012-01-03 14:28:37