Cancel.js 357 B

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