List.js 348 B

123456789101112131415
  1. /**
  2. * This view is an example list of people.
  3. */
  4. Ext.define('saas.view.main.List', {
  5. extend: 'Ext.grid.Panel',
  6. xtype: 'mainlist',
  7. title: 'Personnel',
  8. columns: [
  9. { text: 'Name', dataIndex: 'name' },
  10. { text: 'Email', dataIndex: 'email', flex: 1 },
  11. { text: 'Phone', dataIndex: 'phone', flex: 1 }
  12. ]
  13. });