X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..HEAD:/examples/themes/themes.js diff --git a/examples/themes/themes.js b/examples/themes/themes.js index 786e5cee..5b14e4df 100644 --- a/examples/themes/themes.js +++ b/examples/themes/themes.js @@ -1,7 +1,22 @@ +/* + +This file is part of Ext JS 4 + +Copyright (c) 2011 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. + +*/ Ext.require([ 'Ext.window.Window', 'Ext.panel.Panel', 'Ext.toolbar.*', + 'Ext.tree.Panel', 'Ext.container.Viewport', 'Ext.form.*', 'Ext.tab.*', @@ -14,8 +29,8 @@ Ext.require([ ]); Ext.onReady(function() { - Ext.QuickTips.init(); - + Ext.panel.Panel.prototype.defaultDockWeights = { top: 1, bottom: 3, left: 5, right: 7 }; + var items = []; /** @@ -24,16 +39,31 @@ Ext.onReady(function() { items.push({ xtype: 'panel', - x: 50, y: 100, + x: 50, y: 80, width : 150, - height: 150, + height: 90, title: 'Basic Panel', animCollapse: true, bodyPadding: 5, + html : 'Some content' + }); + + items.push({ + xtype: 'panel', + + x: 50, y: 180, + + width : 150, + height: 70, + + title: 'Collapsed Panel', + animCollapse: true, + bodyPadding: 5, html : 'Some content', - collapsible: true + collapsible: true, + collapsed: true }); /** @@ -42,10 +72,10 @@ Ext.onReady(function() { items.push({ xtype: 'panel', - x: 210, y: 100, + x: 210, y: 80, - width : 150, - height: 150, + width : 130, + height: 170, title: 'Masked Panel', @@ -58,7 +88,7 @@ Ext.onReady(function() { render: function(p) { p.body.mask('Loading...'); }, - delay: 50 + delay: 2000 } }); @@ -68,10 +98,10 @@ Ext.onReady(function() { items.push({ xtype: 'panel', - x: 370, y: 100, + x: 350, y: 80, - width : 150, - height: 150, + width : 170, + height: 100, title: 'Framed Panel', animCollapse: true, @@ -96,20 +126,39 @@ Ext.onReady(function() { }] }], + html : 'Some content', + frame : true + }); + + items.push({ + xtype: 'panel', + + x: 350, y: 190, + + width : 170, + height: 60, + + title: 'Collapsed Framed Panel', + animCollapse: true, + bodyPadding: 5, + bodyBorder: true, html : 'Some content', frame : true, - collapsible: true + collapsible: true, + collapsed: true }); /** * Basic Window */ Ext.createWidget('window', { - x: 530, y: 100, + x: 530, y: 80, width : 150, - height : 150, + height : 170, minWidth: 150, + minHeight: 150, + maxHeight: 170, title: 'Window', @@ -119,7 +168,7 @@ Ext.onReady(function() { collapsible: true, closable : false, draggable : false, - resizable: false, + resizable: { handles: 's' }, animCollapse: true, tbar: [ @@ -163,14 +212,37 @@ Ext.onReady(function() { items.push({ xtype: 'panel', - x: 690, y: 100, + x: 690, y: 80, width : 450, - height: 150, + height: 170, title: 'Basic Panel With Toolbars', + collapsible: true, tbar: [ + { + xtype: 'buttongroup', + title: 'Button Group', + columns: 2, + defaults: { + scale: 'small' + }, + items: [{ + xtype:'splitbutton', + text: 'Menu Button', + iconCls: 'add16', + menu: [{text: 'Menu Button 1'}] + },{ + xtype:'splitbutton', + text: 'Cut', + iconCls: 'add16', + menu: [{text: 'Cut Menu Item'}] + }] + } + ], + bbar: [ + 'Toolbar & Menus', ' ', '-', @@ -197,8 +269,11 @@ Ext.onReady(function() { text : 'Toggle Button' } ], - bbar: [ - {text: 'Bottom Bar'} + lbar:[ + { text: 'Left' } + ], + rbar: [ + { text: 'Right' } ] }); @@ -216,6 +291,7 @@ Ext.onReady(function() { width : 630, height: 700, frame: true, + collapsible: true, tools: [ {type:'toggle'}, @@ -228,7 +304,6 @@ Ext.onReady(function() { {type:'unpin'}, {type:'right'}, {type:'left'}, - {type:'up'}, {type:'down'}, {type:'refresh'}, {type:'minus'}, @@ -291,7 +366,10 @@ Ext.onReady(function() { fieldLabel: 'Checkboxes', xtype: 'checkboxgroup', columns: [100,100], - items: [{boxLabel: 'Foo', checked: true},{boxLabel: 'Bar'}] + items: [ + {boxLabel: 'Foo', checked: true,id:'fooChk',inputId:'fooChkInput'}, + {boxLabel: 'Bar'} + ] }, { fieldLabel: 'Radios', @@ -310,17 +388,36 @@ Ext.onReady(function() { }, { xtype : 'fieldset', - title : 'Plain Fieldset' + title : 'Plain Fieldset', + items: [ + { + hideLabel: true, + xtype: 'radiogroup', + columns: [100,100], + items: [ + {boxLabel: 'Radio A', checked: true, name: 'radiogrp2'}, + {boxLabel: 'Radio B', name: 'radiogrp2'} + ] + } + ] }, { xtype : 'fieldset', title : 'Collapsible Fieldset', - collapsible: true + collapsible: true, + items: [ + { xtype: 'checkbox', boxLabel: 'Checkbox 1' }, + { xtype: 'checkbox', boxLabel: 'Checkbox 2' } + ] }, { xtype : 'fieldset', title : 'Checkbox Fieldset', - checkboxToggle: true + checkboxToggle: true, + items: [ + { xtype: 'radio', boxLabel: 'Radio 1', name: 'radiongrp1' }, + { xtype: 'radio', boxLabel: 'Radio 2', name: 'radiongrp1' } + ] } ], @@ -361,6 +458,7 @@ Ext.onReady(function() { title : 'BorderLayout Panel', layout: 'border', + collapsible: true, defaults: { collapsible: true, @@ -455,6 +553,7 @@ Ext.onReady(function() { x: 690, y: 620, title: 'GridPanel', + collapsible: true, store: store, @@ -509,6 +608,7 @@ Ext.onReady(function() { var accConfig = { title : 'Accordion and TreePanel', + collapsible: true, layout: 'accordion', x: 690, y: 830, @@ -572,26 +672,31 @@ Ext.onReady(function() { items: [ { title: 'Tab 1', - html : 'Tab panel for display in a border layout' + html : 'Tab panel 1 content' }, { title : 'Tab 2', + html : 'Tab panel 2 content', closable: true }, { title : 'Tab 3', + html : 'Tab panel 3 content', closable: true }, { title : 'Tab 4', + html : 'Tab panel 4 content', closable: true }, { title : 'Tab 5', + html : 'Tab panel 5 content', closable: true }, { title : 'Tab 6', + html : 'Tab panel 6 content', closable: true } ] @@ -678,9 +783,9 @@ Ext.onReady(function() { width:250, height:182, x: 430, y: 1130, - collapsible: false, xtype: 'gridpanel', title: 'Framed Grid', + collapsible: true, store: store, multiSelect: true, emptyText: 'No images to display', @@ -692,16 +797,119 @@ Ext.onReady(function() { {header: "Change", width: 75, sortable: true, dataIndex: 'change'} ] }); + + /** + * Basic Window + */ + Ext.createWidget('window', { + x: 690, y: 1290, - Ext.createWidget('viewport', { - layout: 'absolute', - autoScroll: true, - items: items - }); + width : 450, + // height : 360, + minWidth: 450, - progressbar.wait({ - text: 'Progress text...' - }); + title: 'Window', + + bodyPadding: '5 5 0 5', + + collapsible: true, + closable : false, + draggable : false, + resizable: { handles: 's' }, + animCollapse: true, + + items: [ + { + xtype : 'fieldset', + title : 'Plain Fieldset', + items: [ + { + fieldLabel: 'TextField', + xtype : 'textfield', + name : 'someField', + emptyText : 'Enter a value', + anchor : '100%' + }, + { + fieldLabel: 'ComboBox', + xtype : 'combo', + store : ['Foo', 'Bar'], + anchor : '100%' + }, + { + fieldLabel: 'DateField', + xtype : 'datefield', + name : 'date', + anchor : '100%' + }, + { + fieldLabel: 'TimeField', + name : 'time', + xtype : 'timefield', + anchor : '100%' + }, + { + fieldLabel: 'NumberField', + xtype : 'numberfield', + name : 'number', + emptyText : '(This field is optional)', + allowBlank: true, + anchor : '100%' + }, + { + fieldLabel: 'TextArea', + xtype : 'textareafield', + name : 'message', + cls : 'x-form-valid', + value : 'This field is hard-coded to have the "valid" style (it will require some code changes to add/remove this style dynamically)', + anchor : '100%' + }, + { + fieldLabel: 'Checkboxes', + xtype: 'checkboxgroup', + columns: [100,100], + items: [ + {boxLabel: 'Foo', checked: true,id:'fooChk1',inputId:'fooChkInput1'}, + {boxLabel: 'Bar'} + ] + }, + { + xtype: 'radiogroup', + columns: [100,100], + fieldLabel: 'Radio Group', + items: [ + {boxLabel: 'Radio A', checked: true, name: 'radiogrp2'}, + {boxLabel: 'Radio B', name: 'radiogrp2'} + ] + } + ] + } + ], + + buttons: [ + { + text : 'Submit', + handler: function() { + Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?'); + } + } + ] + }).show(); + + for (var i = 0; i < items.length; i++) { + items[i].style = { + position: 'absolute' + }; + var item = Ext.ComponentManager.create(items[i], 'panel'); + item.render(document.body); + } + + setTimeout(function() { + Ext.QuickTips.init(); + progressbar.wait({ + text: 'Progress text...' + }); + }, 7000); /** * Stylesheet Switcher @@ -716,3 +924,4 @@ Ext.onReady(function() { } }); }); +