Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save wrumsby/6027987 to your computer and use it in GitHub Desktop.
Creating a Container with ExtJS.
var panel = Ext.create('Ext.panel.Panel', {
cls: 'my-panel',
title: 'Filters',
items: [
{
xtype: 'datefield',
fieldLabel: 'Start date'
},
{
xtype: 'datefield',
fieldLabel: 'End date'
}
],
renderTo: Ext.getBody()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment