I have a split button that have items and I want when I click on item I do something
I work with extjs 4 I'm working with action on simple button and it work but with split button it doesn't work
this is my view code of split button
{
xtype:'splitbutton',
// x:300,
text: 'Parametre',
iconCls: 'add16',
cls:'badd',
menu: [{text: 'D�connexion',iconCls: 'logout',action:'logout'},{ text: 'R�glage de la Langue',iconCls: 'lang',
and this is my controller function of action
'westmenu button[action=meet]': {
'itemclick' :this.meet
},
logout:function(button)
{
//this.getHome().close();
var form = button.up('westmenu');
form.getForm().submit({
url:'j_spring_security_logout',
});
}
any one have a solution for this