Created
July 28, 2011 07:31
-
-
Save bmoeskau/1111156 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ext.onReady(function() { | |
| Ext.create('Ext.form.Panel', { | |
| title: 'FieldContainer Example', | |
| width: 550, | |
| bodyPadding: 10, | |
| items: [{ | |
| xtype: 'myFancyMultiField', | |
| fieldLabel: 'Foo', | |
| labelWidth: 100 | |
| },{ | |
| xtype: 'textfield', | |
| fieldLabel: 'Bar' | |
| }], | |
| renderTo: Ext.getBody() | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment