Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / examples / panel / bubble-panel.js
1 /*!
2  * Ext JS Library 3.0.3
3  * Copyright(c) 2006-2009 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 Ext.onReady(function(){   
8     var title = new Ext.ux.BubblePanel({
9         bodyStyle: 'padding-left: 8px;color: #0d2a59',
10         renderTo: 'bubbleCt',
11         html: '<h3>Ext.ux.BubblePanel</h3',
12         width: 200,
13         autoHeight: true
14     });\r
15     var cp = new Ext.ux.BubblePanel({\r
16         renderTo: 'bubbleCt',\r
17         padding: 5,\r
18         width: 400,\r
19         autoHeight: true,
20         contentEl: 'bubble-markup'\r
21     });
22
23     var plainOldPanel = new Ext.Panel({
24         renderTo: 'panelCt',
25         padding: 5,
26         frame: true,
27         width: 400,
28         autoHeight: true,
29         title: 'Plain Old Panel',
30         html: Ext.example.bogusMarkup
31     });\r
32 \r
33 });\r
34 \r
35