UpdateMaCraft.js 408 B

1234567891011121314151617
  1. /**
  2. * 更新工单途程
  3. */
  4. Ext.define('erp.view.core.button.UpdateMaCraft',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpUpdateMaCraftButton',
  7. iconCls: 'x-button-icon-submit',
  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: 120
  17. });