Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Created July 18, 2013 09:40
Show Gist options
  • Select an option

  • Save wrumsby/6028064 to your computer and use it in GitHub Desktop.

Select an option

Save wrumsby/6028064 to your computer and use it in GitHub Desktop.
ExtJS FormPanel.
Ext.create('Ext.form.Panel', {
renderTo: Ext.getBody(),
url: '/register.aspx',
method: 'POST',
items: [
{
xtype: 'textfield',
name: 'username',
fieldLabel: 'Username'
}
],
buttons: [
{
cls: 'main green',
text: 'Save',
disabled: true,
formBind: true,
listeners: {
click: {
this.up('.form').submit();
}
}
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment