Toolbar2.js 269 B

12345678910111213
  1. Ext.define('erp.view.core.toolbar.Toolbar2',{
  2. extend: 'Ext.Toolbar',
  3. alias: 'widget.erpToolbar2',
  4. dock: 'bottom',
  5. initComponent : function(){
  6. Ext.apply(this,{
  7. items: [{
  8. xtype: 'erpSaveButton'
  9. }]
  10. });
  11. this.callParent(arguments);
  12. }
  13. });