Add tab to tab panel : TabPanel « Ext JS « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Node Operation
19. Object Oriented
20. Page Components
21. Security
22. SmartClient
23. Style Layout
24. Table
25. Utilities
26. Window Browser
27. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorial
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » Ext JS » TabPanel 
Add tab to tab panel
  




<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.0.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.0.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.0.0/ext-all.js"></script>

</head>
<body>
<script type="text/javascript">
Ext.onReady(function() {
    new Ext.Viewport({
        layout : 'fit',
        title  : 'Tab',
        items  : {
            xtype           : 'tabpanel',
            activeTab       : 0,
            id              : 'myTPanel',
            enableTabScroll : true,
            resizeTabs      : true,
            minTabWidth     : 75,
            items           : [
                {
                    title : 'our first tab'
                }
            ]
        }
    });
        
    (function (num) {
        for (var i = 1; i <= 30; i++) {
            Ext.getCmp('myTPanel').add({
                title    : 'title',
                html     'i am tab ',
                closable : true
            });
        }
    }).defer(500);
    

});
</script> 
<div id='div1'>asdf</div>
</body>
</html>

   
    
  
Related examples in the same category
1. Add tab panel to a window
2. Hold tab panel in a window
3. Closable tab panel
4. Disabled tab
5. Embedded Tab Panel
6. Border layout tab panel
7. Enable tab scroll
8. Set tab resizble to true
9. Set minimum tab width
10. Indicate active tab index
11. Add gear and help icon to tab header
12. Create tab, add to tab panel and then add tab panel to a FormPanel
13. Add html editor to tab panel
14. Forms can be a TabPanel
15. Set activeTab for TabPanel
16. Grouping tab
17. Nested tab
18. Tab change event
19. Place TabPanel in a ViewPort
20. Scrollable tabs with a tabscroller menu
21. Tabs with auto height that resize to the content. Built from existing markup.
22. Tabs with no tab strip and a fixed height that scroll the content. Built entirely with javascript.
23. Disable a tab
24. Tab activated event
ww__w_.__j__a___v_a__2s__._c___o__m_ | |Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.