0
我想顯示3個複選框:多個複選框僅示出一個
var DescCheck = new Ext.form.Checkbox({
fieldLabel: 'Description of service : <span style="color: rgb(255, 0, 0); padding-left: 2px;">*</span>',
width : 600,
labelSeparator : '',
items: [
{boxLabel: 'Direct', name: 'Direct', inputValue: 'Direct'},
{boxLabel: 'Fixed-day', name: 'day', inputValue: 'Fixed'},
{boxLabel: 'Weekly', name: 'Weekly', inputValue: 'Weekly'}
]
});
這form.Checkbox處於字段(純粹審美),其是在一個Ext.FormPanel。
這是發生了什麼:顯示
只有一個複選框,沒有任何標籤。爲什麼?