| 123456789101112131415 |
- /**
- * This view is an example list of people.
- */
- Ext.define('saas.view.main.List', {
- extend: 'Ext.grid.Panel',
- xtype: 'mainlist',
- title: 'Personnel',
- columns: [
- { text: 'Name', dataIndex: 'name' },
- { text: 'Email', dataIndex: 'email', flex: 1 },
- { text: 'Phone', dataIndex: 'phone', flex: 1 }
- ]
- });
|