In this guide, we will discuss card_panel Layout in Ext.js .
Description
card TabPanel : This layout allows to position the items using XY coordinates in the container.
Syntax
Here is the simple syntax to use card tab panel layout
layout: 'layout-cardtabs'
Example
Following is a simple example showing the usage of card tab panel 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.tab.Panel', { renderTo: Ext.getBody(), requires: ['Ext.layout.container.Card'], xtype: 'layout-cardtabs', width: 600, height: 200, items:[{ title: 'Tab 1', html: 'This is first tab.' },{ title: 'Tab 2', html: 'This is second tab.' },{ title: 'Tab 3', html: 'This is third tab.' }] }); }); </script> </head> <body> </body> </html>
Next Topic : Click Here
Pingback: Ext.js - Auto Layout | Adglob Infosystem Pvt Ltd
Pingback: Ext.js - Layouts | Adglob Infosystem Pvt Ltd