How to load pages in same tab with single iframe

  1. #1

    How to load pages in same tab with single iframe

    Hi ,

    I want to keep only one tab at a time.I used this script for displaying tabs.How can i do that.(I am using the same as in example explorer)
    <script type="text/javascript">
            var loadPage = function(tabPanel, node) {
                var tab = tabPanel.getItem(node.id);
                if (!tab) {
                    tab = tabPanel.add({
                        id: node.id,
                        title: node.text,
                        closable: true,
                        autoLoad: {
                            showMask: true,
                            url: node.attributes.href,
                            mode: 'iframe',
                            maskMsg: 'Loading ' + node.attributes.href + '...'
                        },
                        listeners: {
                            update: {
                                fn: function(tab, cfg) {
                                    cfg.iframe.setHeight(cfg.iframe.getSize().height - 20); 
                                },
                                scope: this,
                                single: true
                            }
                        }
                    });                
                }
                tabPanel.setActiveTab(tab);
            }
        </script>
    Attached Thumbnails Click image for larger version. 

Name:	modules.JPG 
Views:	114 
Size:	31.3 KB 
ID:	1494  

Similar Threads

  1. load iframe from javascript
    By pintun in forum 1.x Help
    Replies: 5
    Last Post: Dec 27, 2011, 3:15 PM
  2. [CLOSED] Iframe Load event
    By caha76 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 26, 2011, 7:54 AM
  3. [CLOSED] Load Fresh Page In iFrame...
    By tjbishop in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Aug 03, 2010, 3:19 PM
  4. [CLOSED] Which control can I use without bordes to load aspx pages?
    By flormariafr in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Feb 01, 2010, 7:13 PM
  5. Grip Render Issue on Tab iFrame load
    By Tbaseflug in forum 1.x Help
    Replies: 5
    Last Post: Sep 15, 2009, 3:46 PM

Posting Permissions