Skip to content

Instantly share code, notes, and snippets.

@jeffremer
Created February 10, 2011 22:41
Show Gist options
  • Save jeffremer/821517 to your computer and use it in GitHub Desktop.
Save jeffremer/821517 to your computer and use it in GitHub Desktop.
{
index: function(interaction) {
var form = new Wbx.views.form.FormPanel({
items: [
{
xtype: 'textfield',
name : 'first',
label: 'First name'
},
{
xtype: 'textfield',
name : 'last',
label: 'Last name'
},
{
xtype: 'numberfield',
name : 'age',
label: 'Age'
},
{
xtype: 'urlfield',
name : 'url',
label: 'Website'
}
]
});
this.renderIndex(form, interaction);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment