I am new to ext JS and I am tryin gto place 3 components in a FormPanel but I don't know ho wto align them in the center.

Here is my code

var durationForm = new Ext.FormPanel({
        border      : false,
        labelAlign  : 'top',
        frame       : true,
        bodyStyle   : 'padding-left:475px;',
        items: [{
          items: [{
            rowWidth    : .5,
            layout      :'column',
                items:[{
                    columnWidth     : .13,
                    layout          : 'form',
                    items           : [getNewLabel('<br/><font size="3">Duration: </font>')]
                },{
                    columnWidth     : .20,
                    layout          : 'form',
                    items           : [fromDate()]
                },{
                    columnWidth     : .17,
                    layout          : 'form',
                    items           : [toDate()]
                }]
          }]
        }]
    });

    durationForm.render(Ext.getBody());

This shows output like this enter image description here

But I want components to be align in the center of the panel. Anyone know how to do it?

link|improve this question

33% accept rate
feedback

1 Answer


{
//...
  layout:'hbox',
  layoutConfig: {
    padding:'5',
    pack:'center',
    align:'middle'
  },
  items:[{
       columnWidth     : .13,
       layout          : 'form',
       items           : [getNewLabel(...)]
     },{
       columnWidth     : .20,
       layout          : 'form',
       items           : [fromDate()]
     },{
       columnWidth     : .17,
       layout          : 'form',
       items           : [toDate()]
  }]
//...
}

See this

link|improve this answer
Thanks Amol, It is positioned in the middle now. But now there is no space between 'Duration:' 'From:' and 'To:'. They all three are placed side by side. Do you know how to give little space between them? – Ajan Jul 7 '11 at 8:07
Now I get it, Thanks. I didn't see "See this". – Ajan Jul 7 '11 at 8:19
No. I am sorry. But that doesn't seem to solve my problem. In fact now when I am changing my browser window size it is not showing up in the middle. It's not self adjusting with this layout. Do you know where problem is? – Ajan Jul 7 '11 at 8:28
feedback

Your Answer

 
or
required, but never shown

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