Ext.js - Anchor Layout



This layout gives the privilege to the user to specify the size of each element with respect to the container size.

Syntax

Following is a simple syntax to use Anchor layout.

layout: 'anchor' 

Example

Following is a simple example showing the usage of Anchor layout.

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css" 
         rel = "stylesheet" />
      <script type = "text/javascript" 
         src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>
      
      <script type = "text/javascript">
         Ext.onReady(function() {
            Ext.create('Ext.container.Container', {
               renderTo : Ext.getBody(),
               layout : 'anchor' ,
               width : 600,
               
               items : [{
                  title : 'Panel 1',
                  html : 'panel 1',
                  height : 100,
                  anchor : '50%'
               },{
                  title : 'Panel 2',
                  html : 'panel 2',
                  height : 100,
                  anchor : '100%'
               },{
                  title : 'Panel 3',
                  html : 'panel 3',
                  height : 100,
                  anchor : '-100'
               },{
                  title : 'Panel 4',
                  html : 'panel 4',
                  anchor : '-70, 500'
               }]
            });
         });
      </script>
   </head>
   
   <body>
   </body>
</html>

The above program will produce the following result −

extjs_layouts.htm
Advertisements