Add viewport to body : ViewPort « Ext JS « JavaScript DHTML






Add viewport to body

  

<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'
                }
            ]
        }
    });
    
    

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

   
    
  








Related examples in the same category

1.Viewport: north, west, center
2.Use AccordionPanel in a Viewport
3.collapseMode in a Viewport
4.Set Viewport center to a tab panel
5.Set split to true for east part of the Viewport
6.Set xtype to panel for Viewport
7.Ext.Viewport with tree view and table