MakeFeeClose.js 378 B

12345678910111213141516
  1. Ext.define('erp.view.core.button.MakeFeeClose', {
  2. extend : 'Ext.Button',
  3. alias : 'widget.erpMakeFeeCloseButton',
  4. param : [],
  5. text : $I18N.common.button.erpMakeFeeCloseButton,
  6. iconCls : 'x-button-icon-save',
  7. id : 'makeFeeCloseButton',
  8. cls : 'x-btn-gray',
  9. width : 120,
  10. style : {
  11. marginLeft : '10px'
  12. },
  13. initComponent : function() {
  14. this.callParent(arguments);
  15. }
  16. });