CloseAllDetail.js 452 B

1234567891011121314151617181920
  1. /**
  2. * 制造ECN
  3. * 全部取消执行
  4. */
  5. Ext.define('erp.view.core.button.CloseAllDetail',{
  6. extend: 'Ext.Button',
  7. alias: 'widget.erpCloseAllDetailButton',
  8. iconCls: 'x-button-icon-check',
  9. cls: 'x-btn-gray',
  10. id:'closealldetailbutton',
  11. text: $I18N.common.button.erpCloseAllDetailButton,
  12. style: {
  13. marginLeft: '10px'
  14. },
  15. width: 110,
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });