StoreInformation.js 464 B

1234567891011121314151617181920
  1. Ext.define('saas.view.document.other.StoreInformation', {
  2. extend: 'saas.view.document.kind.Kind',
  3. xtype: 'other-storeinformation',
  4. autoScroll: true,
  5. layout:'fit',
  6. defaultType:'storeinformation',
  7. tbar: ['->',{
  8. xtype:'button',
  9. text:'新增',
  10. listeners: {
  11. click: 'onAdd'
  12. }
  13. },{
  14. xtype:'button',
  15. text:'刷新',
  16. listeners: {
  17. click: 'onRefresh'
  18. }
  19. }]
  20. })