CancelMakeDown.js 408 B

1234567891011121314151617
  1. /**
  2. * 取消下地按钮
  3. */
  4. Ext.define('erp.view.core.button.CancelMakeDown',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpCancelMakeDownButton',
  7. iconCls: 'x-button-icon-save',
  8. cls: 'x-btn-gray',
  9. tooltip: '取消下地',
  10. id: 'erpUpdateMaCraftButton',
  11. formBind: true,
  12. text: '取消下地',
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 100
  17. });