I am trying a implement a really simple layout using BorderLayout.

 var summary = new Ext.Panel({
    region:'west',
    id:'summary',
    title:'Summary layout',
    header: true,
    split:true,
    collapseMode: 'mini',
    collapsible: true,
    width: 200,
    minSize: 175,
    maxSize: 400,
    layout:'vbox',
    align: 'stretch',
    items: [{
        html: Ext.example.shortBogusMarkup,
        title:'Navigation',
        autoScroll:true,
        border:false,
        flex: 1
    },{
        title:'Settings',
        html: Ext.example.shortBogusMarkup,
        border:false,
        autoScroll:true,
        iconCls:'settings',
        flex: 1
    }]
  });

The layout renders well, but when I change the width using the handle, the two panels inside the vbox don't resize.

I tried any kind of configuration I thought of, but i did not work.

(layout fit, width auto, autoWidth, etc...)

What do I miss? Thanks

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I finally found by myself.

I set the layout options not correctly

I had to change to

...
    layout:'vbox',
    layoutConfig: {
      align: 'stretch'
    },
    items: [{
...
link|improve this answer
+1, and mark this as an accepted answer – Jaitsu Feb 17 '11 at 8:30
I can't till tomorrow, but I will. :) – Jonas Feb 17 '11 at 12:17
feedback

Your Answer

 
or
required, but never shown

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