Viewport: north, west, center : ViewPort « Ext JS « JavaScript DHTML






Viewport: north, west, center

  


<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 : 'border',
        items  : [
            {
                height : 75,
                region : 'north',
                title  : 'North'
            },
            {
                width  : 150,
                region : 'west',
                title  : 'west'
            },
            {
                region : 'center',
                title  : 'center'
            }
        ]
     });

    

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

   
    
  








Related examples in the same category

1.Add viewport to body
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