I define a panel extend Ext.form.Panel with alias is: "example".
and in my viewport i init xtype = 'example' for my east.
I want when i collapse that panel (example) then my first field (datefield) will focus
I try some below code but not working
//1. not working
,listeners: {
afterrender: function(field) {
field.focus(true, 100);
}
}
//2. not working
Ext.getCmp('myDatefieldId').focus(true, 20);
How can i do that thanks