Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am in need of creating an iFrame Window in Extjs. Previously in ExtJS 3.x I would do this:

bodyCfg: {
    tag: 'iframe'
}

But the Window Class of ExtJS 4 seems not to have a bodyCfg.

Any ideas on how to make an iFrame ExtJS 4 Window?

share|improve this question

2 Answers

up vote 24 down vote accepted

i think autoEl is what are you looking for...

some advice from me, in Ext 4.. don't use autoEl as a window config property, it can make your window malformed.. i suggest you to use autoEL in a component (items of your window)

new Ext.Window({
    title : "iframe",
    width : 300,
    height: 300,
    layout : 'fit',
    items : [{
        xtype : "component",
        autoEl : {
            tag : "iframe",
            src : "http://www.yahoo.com"
        }
    }]
}).show();

above code is better than

new Ext.Window({
    title : "iframe",
    width : 300,
    height: 300,
    layout : 'fit',
    autoEl : {
       tag : "iframe",
       src : "http://www.yahoo.com"
    }
}).show();

note:currenty you can't load google and facebook inside the iframe

share|improve this answer

In case you want to change the iframe src dynamically. --Thanks.

new Ext.Window({
    title : "iframe",
    width : 300,
    height: 300,
    layout : 'fit',
    items : [{
        xtype : "component",
        id    : 'iframe-win'  // Add id
        autoEl : {
            tag : "iframe",
            src : "http://www.google.co.id"
        }
    }]
}).show();
// Call below code through your any srcUpdate function.
Ext.getDom('iframe-win').src = "http://www.yahoo.com";
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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