Ext.js - Absolute Layout



This layout allows to position the items using XY coordinates in the container.

Syntax

Following is the simple syntax to use for Absolute layout.

layout: 'absolute' 

Example

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

<!DOCTYPE html>
<html>
   <head>
      <link href="/?originalUrl=https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fextjs%2F6.0.0%2Fclassic%2Ftheme-classic%2Fresources%2Ftheme-classic-all.css"
         rel = "stylesheet" />
      <script type = "text/javascript" 
         src="/?originalUrl=https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fextjs%2F6.0.0%2Fext-all.js"></script>

      <script type = "text/javascript">
         Ext.onReady(function() {
            Ext.create('Ext.container.Container', {
               renderTo: Ext.getBody(),
               layout: 'absolute' ,

               items: [{
                  title: 'Panel 1',
                  x: 50,
                  y: 50,
                  html: 'Positioned at x:50, y:50',
                  width: 500,
                  height: 100
               },{
                  title: 'Panel 2',
                  x: 100,
                  y: 95,
                  html: 'Positioned at x:100, y:95',
                  width: 500,
                  height: 100
               }]
            });
         });
      </script>
   </head>
   
   <body>
   </body>
</html>

The above program will produce the following result −

extjs_layouts.htm
Advertisements