1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- Ext.define('KitchenSink.store.Examples', {
- extend: 'Ext.data.TreeStore',
- root: {
- expanded: true,
- children: [
- {
- text: 'Panels',
- expanded: true,
- children: [
- { leaf: true, text: 'Basic Panel' },
- { leaf: true, text: 'Framed Panel' }
- ]
- },
- {
- text: 'Grids',
- expanded: true,
- children: [
- { leaf: true, text: 'Basic Grid' },
- { leaf: true, text: 'Grouped Grid' },
- { leaf: true, text: 'Locked Grid' },
- { leaf: true, text: 'Grouped Header Grid' }
- ]
- },
- {
- text: 'Trees',
- expanded: true,
- children: [
- { leaf: true, text: 'Basic Tree' }
- ]
- },
- {
- text: 'Tabs',
- expanded: true,
- children: [
- { leaf: true, text: 'Basic Tabs' },
- { leaf: true, text: 'Framed Tabs' },
- { leaf: true, text: 'Icon Tabs' },
- { leaf: true, text: 'Titled Tab Panels' }
- ]
- },
- {
- text: 'Windows',
- expanded: true,
- children: [
- { leaf: true, text: 'Basic Window' }
- ]
- },
- {
- text: 'Forms',
- expanded: true,
- children: [
- { leaf: true, text: 'Login' },
- { leaf: true, text: 'Contact' },
- { leaf: true, text: 'Register' }
- ]
- },
- {
- text: 'Toolbars',
- expanded: true,
- children: [
- { leaf: true, text: 'Basic Toolbar' },
- { leaf: true, text: 'Docked Toolbar' }
- ]
- }
- ]
- }
- });
|