Bill.reg.OrgInfo = Ext.extend(Ext.form.CompositeField, {
    initComponent: function() {
        Ext.apply(this, {
            title: 'Контактное лицо:',
            defaults: {
                allowBlank: false,
                flex: 1
            },
            items: [{
                name: 'person',
                xtype: 'textfield',
                fieldLabel: 'ФИО'
            },{
                name: 'post',
                xtype: 'textfield',
                fieldLabel: 'Должность'
            },{
                name: 'phone',
                xtype: 'textfield',
                fieldLabel: 'Телефон'
            }]
        });
        Bill.reg.OrgInfo.superclass.initComponent.apply(this, arguments);
    }
});
Ext.reg('bill-reg-org-info', Bill.reg.OrgInfo); 

