CloseECNAllDetail.js 455 B

1234567891011121314151617181920
  1. /**
  2. * ECN
  3. * 关闭所有明细
  4. */
  5. Ext.define('erp.view.core.button.CloseECNAllDetail',{
  6. extend: 'Ext.Button',
  7. alias: 'widget.erpCloseECNAllDetailButton',
  8. iconCls: 'x-button-icon-check',
  9. cls: 'x-btn-gray',
  10. id:'closealldetailbutton',
  11. text: $I18N.common.button.erpCloseECNAllDetailButton,
  12. style: {
  13. marginLeft: '10px'
  14. },
  15. width: 110,
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });