I am putting a vbox layout inside hbox layout. But the vbox isn't working properly. Here is the code:

Code:

var panel = new Ext.Panel({
            fullscreen : true,
            layout : {
                type : 'hbox',
                align : 'stretch'
            },
            items : [{
                    width : 50,
                    layout : {
                        type : 'vbox',
                        align : 'stretch'
                    },
                    items : [{
                            flex : 1,
                            html : '1st'
                    }, {
                        height : 50,
                        html : '2nd'
                    }]
            }, {
                flex : 1,
                html : 'Large'
            }]
        });

Here, the 2 panels of vbox is coming over one another. If I just create the vbox only, it works perfectly. Here is the code:

Code:

var panel = new Ext.Panel({
            fullscreen : true,
            layout : {
                type : 'vbox',
                align : 'stretch'
            },
            items : [{
                flex : 1,
                html : '1st'
            }, {
                height : 50,
                html : '2nd'
            }]
        });

Am I doing anything wrong?

EDIT:

Somehow, I find, if I swap the vbox items this way, then it works:

...
layout : {
     type : 'vbox',
     align : 'stretch'
},
items : [{
     height : 50,
     html : '2nd'
}, {
     flex : 1,
     html : '1st'
}]
....

However, I want the smaller item at the bottom.

link|improve this question

69% accept rate
feedback

1 Answer

There are a couple things wrong here, fullscreen isn't a documented config option for panel. You have no height defined, so by default you will get autoheight on the parent container(hbox panel). Try setting the height to a number or a percentage

link|improve this answer
dev.sencha.com/deploy/touch/docs/?class=Ext.Panel shows fullscreen is a valid option – Jason Freitas Jun 9 '11 at 0:41
yes, fullscreen is a valid config, and with setting height also, the layout doesn't work. Check the edit portion I added. – Swar Jun 10 '11 at 9:54
feedback

Your Answer

 
or
required, but never shown

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