Skip to content

Instantly share code, notes, and snippets.

@swarnendude
Created April 26, 2013 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swarnendude/5466919 to your computer and use it in GitHub Desktop.
Save swarnendude/5466919 to your computer and use it in GitHub Desktop.
Ext.define('SlideNav.view.Navigation', {
extend: 'Ext.List',
xtype: 'navigation',
requires: ['Ext.data.Store'],
config: {
cls: 'nav-list',
itemTpl: '{title}',
data: [{
title: 'Item 1'
}, {
title: 'Item 2'
}, {
title: 'Item 3'
}
]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment