我想显示 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 中的 FieldSet(纯美学)中。
这就是发生的事情:
只显示一个复选框,没有任何标签。为什么?