Navigation.js 310 B

12345678910111213141516
  1. Ext.define('uas.store.Navigation', {
  2. extend: 'Ext.data.TreeStore',
  3. alias: 'store.navigation',
  4. root: {
  5. expanded: true,
  6. },
  7. autoLoad: true,
  8. proxy: {
  9. type: 'ajax',
  10. url: 'resources/json/navigation.json',
  11. reader: {
  12. type: 'json'
  13. }
  14. }
  15. });