LoadParts.js 394 B

12345678910111213141516
  1. /**
  2. * 载入部件按钮
  3. */
  4. Ext.define('erp.view.core.button.LoadParts',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpLoadPartsButton',
  7. text: $I18N.common.button.erpLoadPartsButton,
  8. tooltip: '载入部件',
  9. iconCls: 'x-button-icon-save',
  10. cls: 'x-btn-gray',
  11. id: 'erpLoadPartsButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 100
  16. });