Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Last active December 19, 2015 22:29
Show Gist options
  • Select an option

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

Select an option

Save wrumsby/6028034 to your computer and use it in GitHub Desktop.
ExtJS declarative syntax.
var config,
button;
config = {
xtype: 'button',
cls: 'main green',
text: 'Save',
listeners: {
click: {
alert('Save clicked');
}
}
};
button = Ext.widget(config);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment