OpenECNAllDetail.js 452 B

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