I am using following code to create a form in my application.

var startAddressPanel = new Ext.form.FormPanel({
    title: 'Address',
    fullscreen: true,
    scroll: 'vertical',
    id: 'start_address',
    defaults: {
        labelWidth: '30%'
    },
    items: [txtFromStreet, 
            txtFromCity, 
            selFromProvince, 
            txtFromPostalCode, 
            selFromCountry]
    });

In the resultant form each field has a small gap underneath. Any suggestions.

link|improve this question
feedback

1 Answer

Increase the labelWidth percentage until the gap no longer exists.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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