Window with animated layout : Window « Ext JS « JavaScript DHTML






Window with animated layout

  

<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() {


var panel1 =     {
  xtype : 'panel',
  title : 'Plain Panel',
  html  : 'Panel with an xtype specified'
}

new Ext.Window({
  width        : 300,
  height       : 300,
  title        : 'Accordion window',
  layout       : 'accordion',
  border       : false,
  layoutConfig : {
    animate : true
  },
  items : [panel1,panel1,panel1,]
}).show();

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

   
    
  








Related examples in the same category

1.Create a window and set title, width, height and panel
2.Place html to Ext Window
3.Call show method to display a window
4.Add two panels to a window
5.Collapsible Panel
6.Set window animation target
7.Set window close action to hide
8.Call show to display the window
9.Call close to hide the window
10.Not resizable
11.Not draggable
12.Not closable
13.No border
14.Set window autoscroll to true
15.Dynamically add item to a window
16.Set Window autoScroll to true and anchor size
17.Window layout = anchor
18.Window without border
19.Window anchor size
20.Set window border style
21.Set window label width
22.Set window default field type
23.Fit a panel to a window
24.Set title for a window
25.Set width and height for a window
26.Set item for a window
27.Set layout for a window
28.Create a form control, add to a form and then add the form to the window
29.Set body style for a window
30.Set width, height, minWidth, minHeight for a window
31.Google map window
32.Window: closable, draggable, resizable
33.Plain Window
34.Set only height and width for a window
35.Add html code to a window
36.Add components to a window
37.Add two TextFields to a window
38.Create Ext.form.TextField and add to Window
39.Window with auto height
40.minimizable and maximizable Window
41.Collapsible Window
42.Minimized to Body
43.Window buttonAlign: 'center'
44.Create a very simple modal Window with "autoTabs" from existing markup
45.Add top Toolbar, bottom Toolbar and button to a window