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(){ | |
var helloWorld = new Ext.form.Label({ | |
text: 'Pick a country to say Hello to!' | |
,renderTo: 'page' | |
}); | |
var dropdown = new Ext.form.ComboBox({ | |
store: new Ext.data.ArrayStore({ | |
id: 0, | |
fields: [ |
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
var form = new Ext.form.FormPanel({ | |
layout: 'form' | |
,title: "Sloth in a box ltd. <em>Sloth Inventory Management System 2.0</em>" | |
,labelWidth: 200 | |
,labelPad: 20 | |
,labelAlign: 'right' | |
,bodyStyle: { | |
padding: '20px 0' | |
} | |
,items: [ |
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
{ | |
xtype: "textfield" | |
,fieldLabel: "Name of Sloth" | |
,name: "name" | |
,required: true | |
} |
OlderNewer