I have a selectfield in a view and when I am navigating to that view I want keypad opens automatically when I am moving to that view. I am trying to call focus method but it is not working,
Any one help me in this.
I have a selectfield in a view and when I am navigating to that view I want keypad opens automatically when I am moving to that view. I am trying to call focus method but it is not working,
Any one help me in this.
You have to call focus on the textfield as soon as it is initialized something like below,
listeners: {
initialize: function(view, eOpts) {
Ext.getCmp('_phoneNumberId').focus();
}
}