~cdparra/gelee/trunk

« back to all changes in this revision

Viewing changes to webui/ecosystem/workspace/extjs/examples/panel/bubble-panel.js

  • Committer: parra
  • Date: 2010-03-15 15:56:56 UTC
  • Revision ID: svn-v4:ac5bba68-f036-4e09-846e-8f32731cc928:trunk/gelee:1448
merged gelee at svn

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*!
 
2
 * Ext JS Library 3.0.0
 
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
    });
 
15
    var cp = new Ext.ux.BubblePanel({
 
16
        renderTo: 'bubbleCt',
 
17
        padding: 5,
 
18
        width: 400,
 
19
        autoHeight: true,
 
20
        contentEl: 'bubble-markup'
 
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
    });
 
32
 
 
33
});
 
34
 
 
35