0

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.

Sandeep Agrawal
  • 546
  • 10
  • 27

1 Answers1

0

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();

                                         }
       }
Gendaful
  • 5,522
  • 11
  • 57
  • 76