Load.js 388 B

12345678910111213141516
  1. Ext.define('erp.view.core.button.Load',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpLoadButton',
  4. iconCls: 'x-button-icon-submit',
  5. cls: 'x-btn-gray',
  6. id:'load',
  7. text: $I18N.common.button.erpLoadButton,
  8. style: {
  9. marginLeft: '10px'
  10. },
  11. width: 60,
  12. // disabled:true,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. }
  16. });