How to achieve the following in extjs

58 Views Asked by At
--Title-------------------------------
|                                     |
|                                     |
|            <Content>                |
|                                     |
|_____________________________________|

How to achieve the above panel in extjs?

Edit: It should look something like this:

image

2

There are 2 best solutions below

1
On BEST ANSWER
Ext.create('Ext.panel.Panel', {
    bodyPadding: 5,
    layout : {
            align : 'center',
            pack : 'center',
            type : 'vbox'
    },
    width: 300,
    height: 300,
    title: 'Title',
    items: [{
        Your ExtJs Content
    }]
});

I think it's not really hard to find this answer via Google ...

Edit : link to JSFiddle : http://jsfiddle.net/tub2506d/1/

2
On

ExtJs item fieldset is just what you are looking for ;)