I am placing Ext JS Grid Panel in a iFrame. Do anybody know how can I place it in the center of the iFrame.

Currently It look like this - Currently It look like this

I want it to be like this - I want it to be like this

link|improve this question

33% accept rate
feedback

3 Answers

up vote 1 down vote accepted

The contents of your IFrame can use a border layout as above or no layout, like this:

var viewPort = new Ext.Viewport({
    renderTo:'body',
    width: 400,
    height: 400,
    items:[new Ext.Panel({
        title: 'hi',
        width: 200,
        height: 200,
        style: 'margin:0 auto;margin-top:100px;'
    })]

});

link|improve this answer
Thanks Skym. one more question: stackoverflow.com/questions/6594067/… – Ajan Jul 6 '11 at 9:16
feedback

In the examples site there is an example that does this you may want to look at.

layout:'ux.center',
items: {
    title: 'Centered Panel',
    widthRatio: 0.75,
    html: 'Some content'
}
link|improve this answer
feedback

Something like

grid:
  region: center;

panel:
  layout: border;
  css: "padding: 40px"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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