Skip to content

Instantly share code, notes, and snippets.

@digibutt
digibutt / gist:1798053
Created February 11, 2012 08:53
Hello World Ext Combo
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: [
@digibutt
digibutt / gist:1798254
Created February 11, 2012 09:32
Sloth in a box
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: [
@digibutt
digibutt / gist:1798328
Created February 11, 2012 09:49
xtype
{
xtype: "textfield"
,fieldLabel: "Name of Sloth"
,name: "name"
,required: true
}