I'm showing an ext js menu from a button, the default behaviour is that the menu is hidden when you click outside of it. How can I make it fixed until I click the button again?
xtype: 'button',
text: 'MyButton',
menu: {
xtype: 'menu',
showSeparator: false,
items: [
{
xtype: 'colorPickerWidget',
listeners: {
colorchange: {
fn: me.onColorPickerWidgetColorChange,
scope: me
}
}
}
]
}
}