Window not rendering frame for content

  1. #1

    Window not rendering frame for content

     var wnd = new Ext.Window({
                    id: 'LabelsWindow',
                    title: title,
                    width: 700,
                    height: 500,
                    closable: true,
                    maximizable: false,
                    minimizable: false,
                    resizable: true,
                    modal: true,
                    loader: {
                        url: url,
                        loadMask: true,
                        autoLoad: true,
                        scripts: true,
                        renderer: 'frame'
                    }
                });
    I have also tried:
     var wnd = new Ext.Window({
                    id: 'LabelsWindow',
                    title: title,
                    width: 700,
                    height: 500,
                    closable: true,
                    maximizable: false,
                    minimizable: false,
                    resizable: true,
                    modal: true,
                    items : [{
                        xtype : "component",                    
                        autoEl : {
                            tag : "iframe",
                            src : url
                        }
                    }]
                });
    this renders the frame but with no content.
  2. #2
    Open examples.ext.net and execute your scipr in the console. You will see that window is created and page is loaded to the frame
    var wnd = new Ext.Window({
        id: 'LabelsWindow',
        title: "Title",
        width: 700,
        height: 500,
        closable: true,
        maximizable: false,
        minimizable: false,
        resizable: true,
        modal: true,
        loader: {
            url: "http://ext.net/",
            loadMask: true,
            autoLoad: true,
            scripts: true,
            renderer: 'frame'
        }
    });
    wnd.show();
  3. #3

    Looks like Visual Studio issue

    I have it working now with the loader - I have had similiar issues with rendering not working in visual studio 2010 - I think it runs out of memory. Thanks for the reply.

Similar Threads

  1. Replies: 1
    Last Post: Feb 18, 2014, 8:07 PM
  2. Replies: 2
    Last Post: Sep 03, 2013, 4:04 PM
  3. reload desktop window frame
    By krishna in forum 1.x Help
    Replies: 0
    Last Post: Mar 01, 2012, 11:51 AM
  4. Anchor modal window to parent frame
    By stone216 in forum 1.x Help
    Replies: 3
    Last Post: Jan 27, 2010, 2:40 PM
  5. [CLOSED] Pass value of row to window with frame
    By CSG in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: May 26, 2009, 12:29 PM

Tags for this Thread

Posting Permissions