Import.js 378 B

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