我可以创建带有复选框的菜单,如下所示
xtype : 'button',
id : 'resultExportBtn',
ui : 'custombtn',
cls : 'field-margin',
style : 'margin-right:5px',
text : 'Export',
menu : [
{
text : 'CSV',
fName : 'csv',
checked : true,
xtype : 'menucheckitem'
}, {
text : 'PDF',
fName : 'pdf',
checked : false,
xtype : 'menucheckitem'
}
]
任何人都知道如何使用单选按钮创建菜单?
答案 0 :(得分:0)
使用radiogroup xtype而不是menucheckitem
menu : [
{
xtype: 'radiogroup',
columns: 1,
vertical: true,
items: [
{
boxLabel: 'CSV',
name: 'rb',
inputValue: '1'
},
{
boxLabel: 'PDF',
name: 'rb',
inputValue: '2'
}
]
}
]