I'm using ExtJS 3.0 and I would like to extend FormPanel or any solution so that everytime I show a form, the first field should get focus. I was thinking of adding a global listener (if such exists) like this perhaps:

afterrender: function() {
Ext.getCmp('formAddProgPaymentDoc').findByType('textfield')[0].focus(); //// Get the first textfield and focus it
}

Can this be done ? I have more than 40 forms and I don't want to add each one a listener, I would like to get it's listener automatically for each one.

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Create an ExtOverrides.js file which will modify base functionality of Ext. And add the following code:

Ext.override(Ext.FormPanel, {
    onRender: function(ct, position){
        this.initFields();
        Ext.FormPanel.superclass.onRender.call(this, ct, position);
        this.form.initEl(this.body);

        //Begin edit of default functionality
        var firstFieldItem = this.getForm().items.first();
        if(firstFieldItem){
            //delay the focus for 500ms to make sure the field is visible
            firstFieldItem.focus(true,500);
        }
        //End edit of default functionality
    }
})

You need to be careful when using ExtOverrides though - when you update to new versions of Ext you will need to verify that you update the default functionality in the override.

link|improve this answer
Thanks for the response, I kinda did this part, I have the listener, but I don't know how and where to extend. Any ideas ? – Manny Calavera Sep 28 '10 at 17:09
Please see the updated answer - hopefully that helps. – sdavids Sep 28 '10 at 19:08
Beware that in the not uncommon situation of re-using a dialog Window (using hide/show) the Window's FormPanel's onRender function will only be called the first time the dialog is shown. In this situation a solution based on the Window's 'show' event is called for. – David Easley Jan 1 '11 at 16:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.